# HG changeset patch # User Christian Brabandt # Date 1537902006 -7200 # Node ID 7379bc1c3498c89d05a7bd0f20c5e08a64a50f1f # Parent b58eb884380f195f2e92bc3d06c434c9b0b29d04 patch 8.1.0433: mapping can obtain text from inputsecret() commit https://github.com/vim/vim/commit/31cbadf74bccc2a5cd8233bc31bbcfe466b00021 Author: Bram Moolenaar Date: Tue Sep 25 20:48:57 2018 +0200 patch 8.1.0433: mapping can obtain text from inputsecret() Problem: Mapping can obtain text from inputsecret(). (Tommy Allen) Solution: Disallow CTRL-R = and CTRL-\ e when using inputsecret(). diff --git a/src/ex_getln.c b/src/ex_getln.c --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -1308,7 +1308,11 @@ getcmdline( /* CTRL-\ e doesn't work when obtaining an expression, unless it * is in a mapping. */ if (c != Ctrl_N && c != Ctrl_G && (c != 'e' - || (ccline.cmdfirstc == '=' && KeyTyped))) + || (ccline.cmdfirstc == '=' && KeyTyped) +#ifdef FEAT_EVAL + || cmdline_star +#endif + )) { vungetc(c); c = Ctrl_BSL; @@ -1801,7 +1805,8 @@ getcmdline( new_cmdpos = -1; if (c == '=') { - if (ccline.cmdfirstc == '=')/* can't do this recursively */ + if (ccline.cmdfirstc == '=' // can't do this recursively + || cmdline_star) // or when typing a password { beep_flush(); c = ESC; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -795,6 +795,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 433, +/**/ 432, /**/ 431,