diff options
author | Bram Moolenaar <Bram@vim.org> | 2015-01-27 18:44:16 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2015-01-27 18:44:16 +0100 |
commit | 3b3a9498d1eab3c28c524cce115160528a9a9297 (patch) | |
tree | 60edbd96e70b18901cf68760a971f191d590c47c /src/globals.h | |
parent | 6bf7c523ad54f625547ef2cc6009c28c0dd337ed (diff) | |
download | vim-git-3b3a9498d1eab3c28c524cce115160528a9a9297.tar.gz |
updated for version 7.4.605v7.4.605
Problem: The # register is not writable, it cannot be restored after
jumping around.
Solution: Make the # register writable. (Marcin Szamotulski)
Diffstat (limited to 'src/globals.h')
-rw-r--r-- | src/globals.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h index a26a8b535..474f74fc4 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1571,6 +1571,7 @@ EXTERN char_u e_nbreadonly[] INIT(= N_("E744: NetBeans does not allow changes in EXTERN char_u e_intern2[] INIT(= N_("E685: Internal error: %s")); EXTERN char_u e_maxmempat[] INIT(= N_("E363: pattern uses more memory than 'maxmempattern'")); EXTERN char_u e_emptybuf[] INIT(= N_("E749: empty buffer")); +EXTERN char_u e_nobufnr[] INIT(= N_("E86: Buffer %ld does not exist")); #ifdef FEAT_EX_EXTRA EXTERN char_u e_invalpat[] INIT(= N_("E682: Invalid search pattern or delimiter")); |