diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-01-08 16:04:29 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-01-08 16:04:29 +0000 |
commit | cf3630f2d0d908f637f1d577a0cfd720987d35f0 (patch) | |
tree | e673fe5ef38ab133ff1001265c971237c11e9a31 /src/ex_docmd.c | |
parent | 0d6602271c5d1954e7803a3f857d0f5d42851f84 (diff) | |
download | vim-git-cf3630f2d0d908f637f1d577a0cfd720987d35f0.tar.gz |
updated for version 7.0034
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index fcc24d26b..2b43dc51f 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -712,10 +712,10 @@ do_cmdline(cmdline, getline, cookie, flags) #ifdef FEAT_EVAL /* For every pair of do_cmdline()/do_one_cmd() calls, use an extra memory * location for storing error messages to be converted to an exception. - * This ensures that the do_errthrow() call in do_one_cmd() does not combine - * the messages stored by an earlier invocation of do_one_cmd() with the - * command name of the later one. This would happen when BufWritePost - * autocommands are executed after a write error. */ + * This ensures that the do_errthrow() call in do_one_cmd() does not + * combine the messages stored by an earlier invocation of do_one_cmd() + * with the command name of the later one. This would happen when + * BufWritePost autocommands are executed after a write error. */ saved_msg_list = msg_list; msg_list = &private_msg_list; private_msg_list = NULL; |