changeset 33245:aaa52dde0575

Document not_eol.
author Reuben Thomas <rrt@sc3d.org>
date Sat, 14 Aug 2010 23:08:55 +0100
parents eab659656626
children 2b93221721d1
files ChangeLog doc/regex.texi
diffstat 2 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Sat Aug 14 16:40:16 2010 +0100
+++ b/ChangeLog	Sat Aug 14 23:08:55 2010 +0100
@@ -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>
--- a/doc/regex.texi	Sat Aug 14 16:40:16 2010 +0100
+++ b/doc/regex.texi	Sat Aug 14 23:08:55 2010 +0100
@@ -1220,8 +1220,9 @@
 
 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