From: Francois Fleuret Date: Wed, 13 Apr 2011 07:02:53 +0000 (+0200) Subject: Fixed the help for the -n option. X-Git-Url: https://www.fleuret.org/cgi-bin/gitweb/gitweb.cgi?p=selector.git;a=commitdiff_plain;h=cae964f858e9c1cc6f4c6da2d2963ad7f4cd59f1 Fixed the help for the -n option. --- diff --git a/selector.1 b/selector.1 index a5b5f24..095c76e 100644 --- a/selector.1 +++ b/selector.1 @@ -85,7 +85,7 @@ start in regexp mode start in case sensitive mode .TP \fB-n\fR, \fB--exclamation-negates\fR -substrings starting with an exclamation point must be absent for a line +substrings starting with an exclamation mark must be absent for a line to match .TP \fB-q\fR, \fB--no-beep\fR diff --git a/selector.c b/selector.c index 9be758a..489386a 100644 --- a/selector.c +++ b/selector.c @@ -188,7 +188,7 @@ void usage(FILE *out) { fprintf(out, " -a, --case-sensitive\n"); fprintf(out, " start in case sensitive mode\n"); fprintf(out, " -n, --exclamation-negates\n"); - fprintf(out, " exclamation points in substring requires the string to be absent\n"); + fprintf(out, " substrings starting with an exclamation mark have to be absent\n"); fprintf(out, " -m, --monochrome\n"); fprintf(out, " monochrome mode\n"); fprintf(out, " -q, --no-beep\n");