From 6d3f257439e3434804716333d49da05326084b5c Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Sat, 10 Mar 2012 13:44:35 -0800 Subject: [PATCH] Shortened the "no matches found" error message --- parser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parser.cpp b/parser.cpp index 5774f3274..2f829f2d9 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