From af481cbbf4d3fa65d7efe7f6d4f498e6b2278abb Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Mon, 13 Jan 1997 05:02:49 +0000 Subject: [PATCH] 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. --- gnu/lib/libregex/doc/xregex.texi | 16 ++++++++-------- 1 file 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]}