mention nullglob exceptions in failglob error msg

This commit is contained in:
Beni Cherniavsky-Paskin
2016-06-02 00:00:19 +03:00
committed by Kurtis Rader
parent 24d6f6d066
commit 63a851cfd6
2 changed files with 2 additions and 2 deletions

View File

@@ -209,7 +209,7 @@ void parse_error_offset_source_start(parse_error_list_t *errors, size_t amt);
#define ILLEGAL_FD_ERR_MSG _(L"Illegal file descriptor in redirection '%ls'")
/// Error message for wildcards with no matches.
#define WILDCARD_ERR_MSG _(L"No matches for wildcard '%ls'.")
#define WILDCARD_ERR_MSG _(L"No matches for wildcard '%ls'. (Tip: empty matches are allowed in 'set', 'count', 'for'.)")
/// Error when using break outside of loop.
#define INVALID_BREAK_ERR_MSG _(L"'break' while not inside of loop")

View File

@@ -1,3 +1,3 @@
No matches for wildcard '*ee*'.
No matches for wildcard '*ee*'. (Tip: empty matches are allowed in 'set', 'count', 'for'.)
fish: case *ee*
^