diff options
author | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2013-05-06 04:24:17 +0200 |
commit | 84a05acc8c341c2be383198496764992ae971a46 (patch) | |
tree | 061887e2e1327a2d0c688cba306b8ec66b3f8477 /src/ex_docmd.c | |
parent | 84e0f6ca9adcbdca254060713878ebc29faaaa65 (diff) | |
download | vim-git-84a05acc8c341c2be383198496764992ae971a46.tar.gz |
updated for version 7.3.925v7.3.925
Problem: Typos in source files.
Solution: Fix the typos. (Ken Takata)
Diffstat (limited to 'src/ex_docmd.c')
-rw-r--r-- | src/ex_docmd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c index 30fe937b5..4a372b595 100644 --- a/src/ex_docmd.c +++ b/src/ex_docmd.c @@ -1093,7 +1093,7 @@ do_cmdline(cmdline, fgetline, cookie, flags) msg_didany = FALSE; /* no output yet */ msg_start(); msg_scroll = TRUE; /* put messages below each other */ - ++no_wait_return; /* dont wait for return until finished */ + ++no_wait_return; /* don't wait for return until finished */ ++RedrawingDisabled; did_inc = TRUE; } @@ -1298,7 +1298,7 @@ do_cmdline(cmdline, fgetline, cookie, flags) && !(did_emsg #ifdef FEAT_EVAL /* Keep going when inside try/catch, so that the error can be - * dealth with, except when it is a syntax error, it may cause + * deal with, except when it is a syntax error, it may cause * the :endtry to be missed. */ && (cstack.cs_trylevel == 0 || did_emsg_syntax) #endif @@ -10982,7 +10982,7 @@ ses_put_fname(fd, name, flagp) *p = '/'; } - /* escapse special characters */ + /* escape special characters */ p = vim_strsave_fnameescape(sname, FALSE); vim_free(sname); if (p == NULL) |