mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
vim-patch:7.4.295 #833
Problem: Various typos, bad white space and unclear comments. Solution: Fix typos. Improve white space. Update comments. https://code.google.com/p/vim/source/detail?r=662ae48e7e246a63d38c9f3165b15b62252edaee
This commit is contained in:

committed by
Justin M. Keyes

parent
3e8314abaa
commit
fdeb132cad
@@ -135,7 +135,7 @@
|
|||||||
/* Advance multi-byte pointer, do not skip over composing chars. */
|
/* Advance multi-byte pointer, do not skip over composing chars. */
|
||||||
# define mb_cptr_adv(p) p += \
|
# define mb_cptr_adv(p) p += \
|
||||||
enc_utf8 ? utf_ptr2len(p) : has_mbyte ? (*mb_ptr2len)(p) : 1
|
enc_utf8 ? utf_ptr2len(p) : has_mbyte ? (*mb_ptr2len)(p) : 1
|
||||||
/* Backup multi-byte pointer. */
|
/* Backup multi-byte pointer. Only use with "p" > "s" ! */
|
||||||
# define mb_ptr_back(s, p) p -= has_mbyte ? ((*mb_head_off)(s, p - 1) + 1) : 1
|
# define mb_ptr_back(s, p) p -= has_mbyte ? ((*mb_head_off)(s, p - 1) + 1) : 1
|
||||||
/* get length of multi-byte char, not including composing chars */
|
/* get length of multi-byte char, not including composing chars */
|
||||||
# define mb_cptr2len(p) (enc_utf8 ? utf_ptr2len(p) : (*mb_ptr2len)(p))
|
# define mb_cptr2len(p) (enc_utf8 ? utf_ptr2len(p) : (*mb_ptr2len)(p))
|
||||||
|
@@ -837,7 +837,7 @@ void check_mouse_termcode()
|
|||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
del_mouse_termcode(KS_URXVT_MOUSE);
|
del_mouse_termcode(KS_URXVT_MOUSE);
|
||||||
/* same as the dec mouse */
|
/* There is no conflict with xterm mouse */
|
||||||
if (use_xterm_mouse() == 4
|
if (use_xterm_mouse() == 4
|
||||||
) {
|
) {
|
||||||
set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
|
set_mouse_termcode(KS_SGR_MOUSE, (char_u *)(term_is_8bit(T_NAME)
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
This is a test of the script language.
|
This is a test of the script language.
|
||||||
|
|
||||||
If after adding a new test, the test output doesn't appear properly in
|
If after adding a new test, the test output doesn't appear properly in
|
||||||
test49.failed, try to add one ore more "G"s at the line ending in "test.out"
|
test49.failed, try to add one or more "G"s at the line ending in "test.out"
|
||||||
|
|
||||||
STARTTEST
|
STARTTEST
|
||||||
:so small.vim
|
:so small.vim
|
||||||
|
@@ -223,7 +223,7 @@ static int included_patches[] = {
|
|||||||
298,
|
298,
|
||||||
//297,
|
//297,
|
||||||
//296,
|
//296,
|
||||||
//295,
|
295,
|
||||||
//294,
|
//294,
|
||||||
//293,
|
//293,
|
||||||
292,
|
292,
|
||||||
|
Reference in New Issue
Block a user