diff options
author | Bram Moolenaar <Bram@vim.org> | 2006-04-30 18:54:39 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2006-04-30 18:54:39 +0000 |
commit | c9b4b05b3544b434730eb218e848a1a441d5ffb2 (patch) | |
tree | c1550ddf398d2030ed25ee98e8342fcb41ac1c87 /src/message.c | |
parent | aa35dd1667c5903cdcc32ebe10f27bc6683c68a1 (diff) | |
download | vim-git-c9b4b05b3544b434730eb218e848a1a441d5ffb2.tar.gz |
updated for version 7.0gv7.0g
Diffstat (limited to 'src/message.c')
-rw-r--r-- | src/message.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/message.c b/src/message.c index c67d47d98..a242a26b0 100644 --- a/src/message.c +++ b/src/message.c @@ -3519,9 +3519,9 @@ msg_show_console_dialog(message, buttons, dfltbutton) else { len += (int)(STRLEN(message) - + 2 /* for the NL's */ - + STRLEN(buttons) - + 3); /* for the ": " and NUL */ + + 2 /* for the NL's */ + + STRLEN(buttons) + + 3); /* for the ": " and NUL */ lenhotkey++; /* for the NUL */ /* If no hotkey is specified first char is used. */ @@ -4450,10 +4450,10 @@ vim_snprintf(str, str_m, fmt, a1, a2, a3, a4, a5, a6, a7, a8, a9, a10) zero_padding = 0; /* turn zero padding off for non-numeric convers. */ justify_left = 1; - min_field_width = 0; /* reset flags */ + min_field_width = 0; /* reset flags */ /* discard the unrecognized conversion, just keep * - * the unrecognized conversion character */ + * the unrecognized conversion character */ str_arg = p; str_arg_l = 0; if (*p != NUL) |