Patch 9.0.0924 (after 9.0.0899)
Problem: The first termcap entry of a builtin termcap is not used.
Solution: Remove increment that was previously skipping the KS_NAME entry.
Files: src/term.c
*** ../vim-9.0.0923/src/term.c 2022-11-22 20:41:02.030206759 +0000
--- src/term.c 2022-11-22 22:00:45.487731871 +0000
***************
*** 1507,1513 ****
int term_8bit = term_is_8bit(term);
! for (++p; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS;
++p)
{
if ((int)p->bt_entry >= 0) // KS_xx entry
{
--- 1507,1513 ----
int term_8bit = term_is_8bit(term);
! for ( ; p->bt_entry != (int)KS_NAME && p->bt_entry != BT_EXTRA_KEYS; ++p)
{
if ((int)p->bt_entry >= 0) // KS_xx entry
{
*** ../vim-9.0.0923/src/version.c 2022-11-22 20:41:02.030206759 +0000
--- src/version.c 2022-11-22 22:03:22.763746480 +0000
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 924,
/**/
--
hundred-and-one symptoms of being an internet addict:
113. You are asked about a bus schedule, you wonder if it is 16 or 32 bits.
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20221122220412.6FDE81C211B%40moolenaar.net.