summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog1
-rw-r--r--doc/regex.texi5
2 files changed, 4 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index eca02ce593..68df573c78 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,7 @@
regex: Tweak doc.
* doc/regex.texi (Overview): Don't mention regex.c.
(GNU Regular Expression Compiling): Likewise.
+ (Match-end-of-line Operator): Mention 'not_eol'.
2010-08-14 Brian Gough <bjg@gnu.org>
Bruno Haible <bruno@clisp.org>
diff --git a/doc/regex.texi b/doc/regex.texi
index d57ff49b46..59dfd8b8bd 100644
--- a/doc/regex.texi
+++ b/doc/regex.texi
@@ -1220,8 +1220,9 @@ matches, e.g., @samp{foo} and, e.g., the first three characters of
Its interaction with the syntax bits and pattern buffer fields is
exactly the dual of @samp{^}'s; see the previous section. (That is,
-``beginning'' becomes ``end'', ``next'' becomes ``previous'', and
-``after'' becomes ``before''.)
+``@samp{^}'' becomes ``@samp{$}'', ``beginning'' becomes ``end'',
+``next'' becomes ``previous'', ``after'' becomes ``before'', and
+``@code{not_bol}'' becomes ``@code{not_eol}''.)
@node GNU Operators