summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjkh <jkh@FreeBSD.org>1997-01-13 05:02:49 +0000
committerjkh <jkh@FreeBSD.org>1997-01-13 05:02:49 +0000
commitda7715db04f4b6fa2a8bc1e5547a9cf3f8647624 (patch)
treef0495ab03778e77e21c588704fdeb227e2eb4f2d
parentb710e8b6b2c505c745262243fbbaaa4611aa6cf7 (diff)
downloadFreeBSD-src-da7715db04f4b6fa2a8bc1e5547a9cf3f8647624.zip
FreeBSD-src-da7715db04f4b6fa2a8bc1e5547a9cf3f8647624.tar.gz
Turn this into legal texinfo. Since I don't know what the author
intended (and clearly, neither did the author :) I've just used the bullet list attribute everywhere.
-rw-r--r--gnu/lib/libregex/doc/xregex.texi16
1 files changed, 8 insertions, 8 deletions
diff --git a/gnu/lib/libregex/doc/xregex.texi b/gnu/lib/libregex/doc/xregex.texi
index 9292b35..fe01e4e 100644
--- a/gnu/lib/libregex/doc/xregex.texi
+++ b/gnu/lib/libregex/doc/xregex.texi
@@ -2091,7 +2091,7 @@ pattern.
For example, when you match @samp{((a)(b))} against @samp{ab}, you get:
-@itemize
+@itemize @bullet
@item
0 in @code{@w{@var{regs}->}start[0]} and 2 in @code{@w{@var{regs}->}end[0]}
@@ -2113,7 +2113,7 @@ about what the group @emph{last} matched.
For example, when you match the pattern @samp{(a)*} against the string
@samp{aa}, you get:
-@itemize
+@itemize @bullet
@item
0 in @code{@w{@var{regs}->}start[0]} and 2 in @code{@w{@var{regs}->}end[0]}
@@ -2131,7 +2131,7 @@ sets @code{@w{@var{regs}->}start[@var{i}]} and
For example, when you match the pattern @samp{(a)*b} against
the string @samp{b}, you get:
-@itemize
+@itemize @bullet
@item
0 in @code{@w{@var{regs}->}start[0]} and 1 in @code{@w{@var{regs}->}end[0]}
@@ -2148,7 +2148,7 @@ zero-length string.
For example, when you match the pattern @samp{(a*)b} against the string
@samp{b}, you get:
-@itemize
+@itemize @bullet
@item
0 in @code{@w{@var{regs}->}start[0]} and 1 in @code{@w{@var{regs}->}end[0]}
@@ -2164,7 +2164,7 @@ pattern.
For example, when you match the pattern @samp{(a*)} against the empty
string, you get:
-@itemize
+@itemize @bullet
@item
0 in @code{@w{@var{regs}->}start[0]} and 0 in @code{@w{@var{regs}->}end[0]}
@@ -2185,7 +2185,7 @@ For example, when you match the pattern @samp{((a*)b)*} against the
string @samp{abb}, @w{group 2} last matches the empty string, so you
get what it previously matched:
-@itemize
+@itemize @bullet
@item
0 in @code{@w{@var{regs}->}start[0]} and 3 in @code{@w{@var{regs}->}end[0]}
@@ -2200,7 +2200,7 @@ When you match the pattern @samp{((a)*b)*} against the string
@samp{abb}, @w{group 2} doesn't participate in the last match, so you
get:
-@itemize
+@itemize @bullet
@item
0 in @code{@w{@var{regs}->}start[0]} and 3 in @code{@w{@var{regs}->}end[0]}
@@ -2223,7 +2223,7 @@ and the function sets
For example, when you match the pattern @samp{((a)*b)*c} against the
string @samp{c}, you get:
-@itemize
+@itemize @bullet
@item
0 in @code{@w{@var{regs}->}start[0]} and 1 in @code{@w{@var{regs}->}end[0]}
OpenPOWER on IntegriCloud