diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-01-28 17:56:09 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-01-28 17:56:09 +0100 |
commit | 61015162ba834541c42da5db6f3fa0ebe1d40e87 (patch) | |
tree | 9f88c5b4fca46e1b03902ea64c1c1f43b7521dbc /src/errors.h | |
parent | 1d859e24218635c57c09801840ff159cb845ae6a (diff) | |
download | vim-git-8.2.2423.tar.gz |
patch 8.2.2423: missing error messagev8.2.2423
Problem: Missing error message.
Solution: Add the error message.
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/errors.h b/src/errors.h index b2f6a55a8..c27da7cc3 100644 --- a/src/errors.h +++ b/src/errors.h @@ -347,3 +347,5 @@ EXTERN char e_divide_by_zero[] INIT(= N_("E1154: Divide by zero")); EXTERN char e_cannot_define_autocommands_for_all_events[] INIT(= N_("E1155: Cannot define autocommands for ALL events")); +EXTERN char e_cannot_change_arglist_recursively[] + INIT(= N_("E1156: Cannot change the argument list recursively")); |