diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-02-15 21:17:56 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-02-15 21:17:56 +0000 |
commit | 8b716f5f2204f938769de283d43bcb2f77d403e7 (patch) | |
tree | b6e02ebcc3d6b23646b037e9b145b1aa147be8b1 /src/errors.h | |
parent | 9fdde7992ab4c21517f447ca3d651b9ff4a770e8 (diff) | |
download | vim-git-8b716f5f2204f938769de283d43bcb2f77d403e7.tar.gz |
patch 8.2.4395: some code lines not covered by testsv8.2.4395
Problem: Some code lines not covered by tests.
Solution: Add a few more test cases. Fix getting more than one error for
invalid assignment.
Diffstat (limited to 'src/errors.h')
-rw-r--r-- | src/errors.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/errors.h b/src/errors.h index d6b82bbfb..8e2b9da6c 100644 --- a/src/errors.h +++ b/src/errors.h @@ -2788,7 +2788,8 @@ EXTERN char e_missing_argument_type_for_str[] INIT(= N_("E1077: Missing argument type for %s")); // E1078 unused // E1079 unused -// E1080 unused +EXTERN char e_invalid_assignment[] + INIT(= N_("E1080: Invalid assignment")); EXTERN char e_cannot_unlet_str[] INIT(= N_("E1081: Cannot unlet %s")); #endif |