diff options
Diffstat (limited to 'data/vim/patches/8.1.0436')
-rw-r--r-- | data/vim/patches/8.1.0436 | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/data/vim/patches/8.1.0436 b/data/vim/patches/8.1.0436 new file mode 100644 index 000000000..4f8fabb03 --- /dev/null +++ b/data/vim/patches/8.1.0436 @@ -0,0 +1,92 @@ +To: vim_dev@googlegroups.com +Subject: Patch 8.1.0436 +Fcc: outbox +From: Bram Moolenaar <Bram@moolenaar.net> +Mime-Version: 1.0 +Content-Type: text/plain; charset=UTF-8 +Content-Transfer-Encoding: 8bit +------------ + +Patch 8.1.0436 +Problem: Can get the text of inputsecret() with getcmdline(). (Tommy Allen) +Solution: Don't return the text. +Files: src/ex_getln.c + + +*** ../vim-8.1.0435/src/ex_getln.c 2018-09-25 20:48:53.882887698 +0200 +--- src/ex_getln.c 2018-09-25 22:24:49.489341379 +0200 +*************** +*** 1310,1316 **** + if (c != Ctrl_N && c != Ctrl_G && (c != 'e' + || (ccline.cmdfirstc == '=' && KeyTyped) + #ifdef FEAT_EVAL +! || cmdline_star + #endif + )) + { +--- 1310,1316 ---- + if (c != Ctrl_N && c != Ctrl_G && (c != 'e' + || (ccline.cmdfirstc == '=' && KeyTyped) + #ifdef FEAT_EVAL +! || cmdline_star > 0 + #endif + )) + { +*************** +*** 1805,1812 **** + new_cmdpos = -1; + if (c == '=') + { +! if (ccline.cmdfirstc == '=' // can't do this recursively +! || cmdline_star) // or when typing a password + { + beep_flush(); + c = ESC; +--- 1805,1812 ---- + new_cmdpos = -1; + if (c == '=') + { +! if (ccline.cmdfirstc == '=' // can't do this recursively +! || cmdline_star > 0) // or when typing a password + { + beep_flush(); + c = ESC; +*************** +*** 6506,6513 **** + char_u * + get_cmdline_str(void) + { +! struct cmdline_info *p = get_ccline_ptr(); + + if (p == NULL) + return NULL; + return vim_strnsave(p->cmdbuff, p->cmdlen); +--- 6506,6516 ---- + char_u * + get_cmdline_str(void) + { +! struct cmdline_info *p; + ++ if (cmdline_star > 0) ++ return NULL; ++ p = get_ccline_ptr(); + if (p == NULL) + return NULL; + return vim_strnsave(p->cmdbuff, p->cmdlen); +*** ../vim-8.1.0435/src/version.c 2018-09-25 22:17:51.111962197 +0200 +--- src/version.c 2018-09-25 22:27:15.498025693 +0200 +*************** +*** 796,797 **** +--- 796,799 ---- + { /* Add new patch number below this line */ ++ /**/ ++ 436, + /**/ + +-- +To be rich is not the end, but only a change of worries. + + /// Bram Moolenaar -- Bram@Moolenaar.net -- http://www.Moolenaar.net \\\ +/// sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ \\\ +\\\ an exciting new programming language -- http://www.Zimbu.org /// + \\\ help me help AIDS victims -- http://ICCF-Holland.org /// |