diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-06-16 15:50:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-06-16 15:50:45 +0200 |
commit | 8cdbd5b3c4225b04536dea7523718695306b16b5 (patch) | |
tree | d7cd76c65d4489a9c76ec848c358f0876cc0c71c /src/ex_cmds2.c | |
parent | 1c196e7b1742c1a50ce0d74190721acaad087f81 (diff) | |
download | vim-git-8cdbd5b3c4225b04536dea7523718695306b16b5.tar.gz |
patch 8.1.1555: NOT_IN_POPUP_WINDOW is confusingv8.1.1555
Problem: NOT_IN_POPUP_WINDOW is confusing. (Andy Massimino)
Solution: Rename to ERROR_IF_POPUP_WINDOW().
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 3c73030e6..af7aa4b8e 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -1864,7 +1864,7 @@ do_argfile(exarg_T *eap, int argn) char_u *p; int old_arg_idx = curwin->w_arg_idx; - if (NOT_IN_POPUP_WINDOW) + if (ERROR_IF_POPUP_WINDOW) return; if (argn < 0 || argn >= ARGCOUNT) { |