comparison src/ex_docmd.c @ 11158:501f46f7644c v8.0.0466

patch 8.0.0466: still macros that should be all-caps commit https://github.com/vim/vim/commit/8820b48654b62472821d9b155fe03ab7ac13a05c Author: Bram Moolenaar <Bram@vim.org> Date: Thu Mar 16 17:23:31 2017 +0100 patch 8.0.0466: still macros that should be all-caps Problem: There are still a few macros that should be all-caps. Solution: Make a few more macros all-caps.
author Christian Brabandt <cb@256bit.org>
date Thu, 16 Mar 2017 17:30:06 +0100
parents f4ea50924c6d
children 62c96fee518e
comparison
equal deleted inserted replaced
11157:35a1705f4d02 11158:501f46f7644c
6030 msg_putchar(a & BANG ? '!' : ' '); 6030 msg_putchar(a & BANG ? '!' : ' ');
6031 msg_putchar(a & REGSTR ? '"' : ' '); 6031 msg_putchar(a & REGSTR ? '"' : ' ');
6032 msg_putchar(gap != &ucmds ? 'b' : ' '); 6032 msg_putchar(gap != &ucmds ? 'b' : ' ');
6033 msg_putchar(' '); 6033 msg_putchar(' ');
6034 6034
6035 msg_outtrans_attr(cmd->uc_name, hl_attr(HLF_D)); 6035 msg_outtrans_attr(cmd->uc_name, HL_ATTR(HLF_D));
6036 len = (int)STRLEN(cmd->uc_name) + 4; 6036 len = (int)STRLEN(cmd->uc_name) + 4;
6037 6037
6038 do { 6038 do {
6039 msg_putchar(' '); 6039 msg_putchar(' ');
6040 ++len; 6040 ++len;
8478 msg_scroll = TRUE; 8478 msg_scroll = TRUE;
8479 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next) 8479 for (tp = first_tabpage; tp != NULL && !got_int; tp = tp->tp_next)
8480 { 8480 {
8481 msg_putchar('\n'); 8481 msg_putchar('\n');
8482 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++); 8482 vim_snprintf((char *)IObuff, IOSIZE, _("Tab page %d"), tabcount++);
8483 msg_outtrans_attr(IObuff, hl_attr(HLF_T)); 8483 msg_outtrans_attr(IObuff, HL_ATTR(HLF_T));
8484 out_flush(); /* output one line at a time */ 8484 out_flush(); /* output one line at a time */
8485 ui_breakcheck(); 8485 ui_breakcheck();
8486 8486
8487 if (tp == curtab) 8487 if (tp == curtab)
8488 wp = firstwin; 8488 wp = firstwin;