summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2007-09-13 16:26:47 +0000
committerBram Moolenaar <Bram@vim.org>2007-09-13 16:26:47 +0000
commit61abfd1171924eddc619a9bb13dfea788a16ac2e (patch)
tree3b63f79912a1ceccea9c52b9bcaee9e133e30425 /src/ex_cmds.c
parenta84b10685c8f2c4cc1f7846fddae6b29bc4aee0f (diff)
updated for version 7.1-104v7.1.104
Diffstat (limited to 'src/ex_cmds.c')
-rw-r--r--src/ex_cmds.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ex_cmds.c b/src/ex_cmds.c
index 958f3abd39..32de576105 100644
--- a/src/ex_cmds.c
+++ b/src/ex_cmds.c
@@ -4498,7 +4498,7 @@ do_sub(eap)
*
* The new text is built up in new_start[]. It has some extra
* room to avoid using alloc()/free() too often. new_start_len is
- * the lenght of the allocated memory at new_start.
+ * the length of the allocated memory at new_start.
*
* Make a copy of the old line, so it won't be taken away when
* updating the screen or handling a multi-line match. The "old_"
@@ -4669,7 +4669,7 @@ do_sub(eap)
#endif
++no_mapping; /* don't map this key */
++allow_keys; /* allow special keys */
- i = safe_vgetc();
+ i = plain_vgetc();
--allow_keys;
--no_mapping;