aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan K. Hubbard <jkh@FreeBSD.org>1997-01-13 05:02:49 +0000
committerJordan K. Hubbard <jkh@FreeBSD.org>1997-01-13 05:02:49 +0000
commitaf481cbbf4d3fa65d7efe7f6d4f498e6b2278abb (patch)
treef0495ab03778e77e21c588704fdeb227e2eb4f2d
parent995ee89c338ecd61f917de372c72b3505a80d88f (diff)
downloadsrc-af481cbbf4d3fa65d7efe7f6d4f498e6b2278abb.tar.gz
src-af481cbbf4d3fa65d7efe7f6d4f498e6b2278abb.zip
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.
Notes
Notes: svn path=/head/; revision=21643
-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 9292b356ef75..fe01e4ef1e04 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]}