updated for version 7.0034
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index fcc24d2..2b43dc5 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -712,10 +712,10 @@
#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;