commit | d68071d8da46caf46581ae55aaca241e2dbf62c3 | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Tue May 02 22:08:30 2006 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Tue May 02 22:08:30 2006 +0000 |
tree | aa3ff9a9d640cad7c56bc626b1dd1e53af084d67 | |
parent | c9b4b05b3544b434730eb218e848a1a441d5ffb2 [diff] [blame] |
updated for version 7.0g01
diff --git a/src/window.c b/src/window.c index 7ba9e22..09c638e 100644 --- a/src/window.c +++ b/src/window.c
@@ -3491,6 +3491,18 @@ tabpage_T *ttp; int i; + if (text_locked()) + { + /* Not allowed when editing the command line. */ +#ifdef FEAT_CMDWIN + if (cmdwin_type != 0) + EMSG(_(e_cmdwin)); + else +#endif + EMSG(_(e_secure)); + return; + } + /* If there is only one it can't work. */ if (first_tabpage->tp_next == NULL) {