aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.txt1
-rw-r--r--pseudolog.c3
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog.txt b/ChangeLog.txt
index eb14704..9e26e5f 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -1,6 +1,7 @@
2010-03-17:
* (seebs) fixup help options
* (seebs) use strerror() in a couple more places
+ * (seebs) mention ^ specification in pseudolog -h output.
2010-03-16:
* (seebs) Fix missing error checking noted by comp.lang.c reader.
diff --git a/pseudolog.c b/pseudolog.c
index 33ee3c7..ddce948 100644
--- a/pseudolog.c
+++ b/pseudolog.c
@@ -77,7 +77,8 @@ usage(int status) {
fputs("the following option letters, and value is the value to match.\n", f);
fputs("values may be prefixed with ! (not equal to), > (greater than),\n", f);
fputs("< (less than), & (bitwise and), ~ (LIKE match, anchored at both\n", f);
- fputs("ends, text fields only), or % (LIKE match, text fields only).\n", f);
+ fputs("ends, text fields only), ^ (NOT LIKE match, anchored at both\n", f);
+ fputs("ends, or % (LIKE match, text fields only).\n", f);
fputs("\n", f);
fputs("OPTION LETTERS:\n", f);
for (i = 0; options[i]; ++i) {