summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-03-06 14:44:08 +0100
committerBram Moolenaar <Bram@vim.org>2016-03-06 14:44:08 +0100
commitbe82c254862e475a582c0717455e1db6bf96b0d0 (patch)
tree11dfa9bbaf41ce597a37afb20bbd7f1bcb3eb7d6 /src/globals.h
parent2588b5a43f049ddf542991050260237051caad77 (diff)
patch 7.4.1499v7.4.1499
Problem: No error message when :packadd does not find anything. Solution: Add an error message. (Hirohito Higashi)
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/globals.h b/src/globals.h
index 6fd86fba56..bd9ef5c877 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1577,6 +1577,7 @@ EXTERN char_u e_notset[] INIT(= N_("E764: Option '%s' is not set"));
#ifndef FEAT_CLIPBOARD
EXTERN char_u e_invalidreg[] INIT(= N_("E850: Invalid register name"));
#endif
+EXTERN char_u e_dirnotf[] INIT(= N_("E919: Directory not found in '%s': \"%s\""));
#ifdef MACOS_X_UNIX
EXTERN short disallow_gui INIT(= FALSE);