diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-12 17:58:01 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-12 17:58:01 +0200 |
commit | 8071cb2c646c9d38dcd4e3ccd377dce07705f031 (patch) | |
tree | 1618343aba4c372cbfc3fc9c56e7a7102518c6ec /src/ex_getln.c | |
parent | bd42b31780794fa751597cf3aa4d1d01889b1494 (diff) | |
download | vim-git-8071cb2c646c9d38dcd4e3ccd377dce07705f031.tar.gz |
patch 8.1.1667: flags for Ex commands may clash with other symbolsv8.1.1667
Problem: Flags for Ex commands may clash with other symbols.
Solution: Prepend with EX_.
Diffstat (limited to 'src/ex_getln.c')
-rw-r--r-- | src/ex_getln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_getln.c b/src/ex_getln.c index c9c63acb4..b1b996183 100644 --- a/src/ex_getln.c +++ b/src/ex_getln.c @@ -4834,7 +4834,7 @@ addstar( * EXPAND_COMMANDS Cursor is still touching the command, so complete * it. * EXPAND_BUFFERS Complete file names for :buf and :sbuf commands. - * EXPAND_FILES After command with XFILE set, or after setting + * EXPAND_FILES After command with EX_XFILE set, or after setting * with P_EXPAND set. eg :e ^I, :w>>^I * EXPAND_DIRECTORIES In some cases this is used instead of the latter * when we know only directories are of interest. eg |