summaryrefslogtreecommitdiffstats
path: root/src/ex_docmd.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-05-19 20:53:52 +0000
committerBram Moolenaar <Bram@vim.org>2005-05-19 20:53:52 +0000
commit9c13b359b496c5268702776105a9f87b269e84f3 (patch)
treed010b277d0d66dadbe78a5d80b164ef0d79a49c2 /src/ex_docmd.c
parent34cdc3e32917a3812a8ec4369c64ef3e35243cfd (diff)
updated for version 7.0073
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r--src/ex_docmd.c19
1 files changed, 7 insertions, 12 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 38a7d448c6..9d9062a8e8 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -1054,21 +1054,11 @@ do_cmdline(cmdline, getline, cookie, flags)
if (p_verbose >= 15 && sourcing_name != NULL)
{
- int c = -1;
-
++no_wait_return;
msg_scroll = TRUE; /* always scroll up, don't overwrite */
- /* Truncate long lines, smsg() can't handle that. */
- if (STRLEN(cmdline_copy) > 200)
- {
- c = cmdline_copy[200];
- cmdline_copy[200] = NUL;
- }
smsg((char_u *)_("line %ld: %s"),
(long)sourcing_lnum, cmdline_copy);
msg_puts((char_u *)"\n"); /* don't overwrite this either */
- if (c >= 0)
- cmdline_copy[200] = c;
cmdline_row = msg_row;
--no_wait_return;
}
@@ -1341,7 +1331,8 @@ do_cmdline(cmdline, getline, cookie, flags)
switch (current_exception->type)
{
case ET_USER:
- sprintf((char *)IObuff, _("E605: Exception not caught: %s"),
+ vim_snprintf((char *)IObuff, IOSIZE,
+ _("E605: Exception not caught: %s"),
current_exception->value);
p = vim_strsave(IObuff);
break;
@@ -4802,7 +4793,7 @@ check_more(message, forceit)
if (n == 1)
STRCPY(buff, _("1 more file to edit. Quit anyway?"));
else
- sprintf((char *)buff,
+ vim_snprintf((char *)buff, IOSIZE,
_("%d more files to edit. Quit anyway?"), n);
if (vim_dialog_yesno(VIM_QUESTION, NULL, buff, 1) == VIM_YES)
return OK;
@@ -9902,6 +9893,10 @@ ex_viminfo(eap)
#endif
#if defined(FEAT_GUI_DIALOG) || defined(FEAT_CON_DIALOG) || defined(PROTO)
+/*
+ * Make a dialog message in "buff[IOSIZE]".
+ * "format" must contain "%.*s".
+ */
void
dialog_msg(buff, format, fname)
char_u *buff;