From afc5c0a6e71cab9b527e0531dda1ba0023400910 Mon Sep 17 00:00:00 2001 From: Kevin Ballard Date: Sat, 14 Apr 2018 21:59:18 -0700 Subject: [PATCH] Tweak the error message for `history delete --exact foo` The old message made it sound like the `--exact` flag wasn't supported. --- src/builtin_history.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin_history.cpp b/src/builtin_history.cpp index d5ed1f399..30b613ece 100644 --- a/src/builtin_history.cpp +++ b/src/builtin_history.cpp @@ -264,7 +264,7 @@ int builtin_history(parser_t &parser, io_streams_t &streams, wchar_t **argv) { } if (!opts.case_sensitive) { streams.err.append_format( - _(L"builtin history delete only supports --case-sensitive\n")); + _(L"builtin history delete --exact requires --case-sensitive\n")); status = STATUS_INVALID_ARGS; break; }