On 14 August 2010 19:48, Bruno Haible <br...@clisp.org> wrote: > Reuben Thomas wrote: >> In the end I found very little to change on a first look. The attached patch: >> >> 1. Removes mentions of regex.c. > > I've committed this part for you. > >> 2. Adds documentation of not_eol. > > I haven't committed this part, because you added a paragraph about not_eol > in the section Match-beginning-of-line Operator, where in my opinion it > belongs in section Match-end-of-line Operator.
Sorry, I have moved it to the correct section (my lack of care). New patch attached. -- http://rrt.sc3d.org
From 8c6443c1d136e7e53f4e6a158071787f3caf6198 Mon Sep 17 00:00:00 2001 From: Reuben Thomas <r...@sc3d.org> Date: Sat, 14 Aug 2010 23:08:55 +0100 Subject: [PATCH] Document not_eol. --- doc/regex.texi | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/doc/regex.texi b/doc/regex.texi index d57ff49..59dfd8b 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 -- 1.7.0.4