From cc4c9bbd2e9df62037a5969f0d27174f4a28b8c1 Mon Sep 17 00:00:00 2001 From: James Youngman Date: Sun, 24 Jul 2005 21:13:59 +0000 Subject: [PATCH] Made Texinfo style corrections suggested by Karl Berry. --- lib/regexprops.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/regexprops.c b/lib/regexprops.c index 974ce6bb..80d14f36 100644 --- a/lib/regexprops.c +++ b/lib/regexprops.c @@ -88,12 +88,14 @@ static void begin_subsection(const char *name, directive("@node "); content(name); +#if 0 content(","); content(next); content(","); content(prev); content(","); content(up); +#endif newline(); directive("@subsection "); @@ -406,7 +408,7 @@ static int describe_regex_syntax(int options) enum_item("@samp{\\<} matches the beginning of a word"); enum_item("@samp{\\>} matches the end of a word"); enum_item("@samp{\\b} matches a word boundary"); - enum_item("@samp{\\B} matches characters which are not a word boundaries"); + enum_item("@samp{\\B} matches characters which are not a word boundary"); enum_item("@samp{\\`} matches the beginning of the whole input"); enum_item("@samp{\\'} matches the end of the whole input"); endenum();