mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 17:28:23 +00:00
vim-patch:8.0.0466: still macros that should be all-caps (#8510)
Problem: There are still a few macros that should be all-caps.
Solution: Make a few more macros all-caps.
8820b48654
This commit is contained in:

committed by
Justin M. Keyes

parent
b94b59e4e8
commit
bbb88607c9
@@ -4949,7 +4949,7 @@ static void uc_list(char_u *name, size_t name_len)
|
||||
msg_putchar(gap != &ucmds ? 'b' : ' ');
|
||||
msg_putchar(' ');
|
||||
|
||||
msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D));
|
||||
msg_outtrans_attr(cmd->uc_name, HL_ATTR(HLF_D));
|
||||
len = (int)STRLEN(cmd->uc_name) + 4;
|
||||
|
||||
do {
|
||||
@@ -6767,8 +6767,8 @@ static void ex_tabs(exarg_T *eap)
|
||||
|
||||
msg_putchar('\n');
|
||||
vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
|
||||
msg_outtrans_attr(IObuff, hl_attr(HLF_T));
|
||||
ui_flush(); /* output one line at a time */
|
||||
msg_outtrans_attr(IObuff, HL_ATTR(HLF_T));
|
||||
ui_flush(); // output one line at a time
|
||||
os_breakcheck();
|
||||
|
||||
FOR_ALL_WINDOWS_IN_TAB(wp, tp) {
|
||||
|
Reference in New Issue
Block a user