aboutsummaryrefslogtreecommitdiffhomepage
path: root/parser.cpp
diff options
context:
space:
mode:
authorGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-10 13:44:35 -0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2012-03-10 13:44:35 -0800
commit6d3f257439e3434804716333d49da05326084b5c (patch)
treeabb2ec701bf7949376edb062e5cab72726882f65 /parser.cpp
parentf92b24221a1b2449b17161d57ae1b4699b82374b (diff)
Shortened the "no matches found" error message
Diffstat (limited to 'parser.cpp')
-rw-r--r--parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/parser.cpp b/parser.cpp
index 5774f327..2f829f2d 100644
--- a/parser.cpp
+++ b/parser.cpp
@@ -121,7 +121,7 @@ The fish parser. Contains functions for parsing and evaluating code.
/**
Error message for wildcards with no matches
*/
-#define WILDCARD_ERR_MSG _( L"Warning: No match for wildcard '%ls'. The command will not be executed.")
+#define WILDCARD_ERR_MSG _( L"No matches for wildcard '%ls'.")
/**
Error when using case builtin outside of switch block