diff options
author | Fred Drake <fdrake@acm.org> | 1998-02-19 06:32:06 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1998-02-19 06:32:06 (GMT) |
commit | 75bfb0f7bb0760bf5be3717657baea7b022bf676 (patch) | |
tree | 891d6cb59f7b61a3e9cd656f293fd5c09d8f984d | |
parent | 802a202d0d7a3b2156f1777f5324499b06358203 (diff) | |
download | cpython-75bfb0f7bb0760bf5be3717657baea7b022bf676.zip cpython-75bfb0f7bb0760bf5be3717657baea7b022bf676.tar.gz cpython-75bfb0f7bb0760bf5be3717657baea7b022bf676.tar.bz2 |
{fulllineitems} is now an environment; use it as such.
-rw-r--r-- | Doc/lib/libregex.tex | 10 | ||||
-rw-r--r-- | Doc/libregex.tex | 10 |
2 files changed, 14 insertions, 6 deletions
diff --git a/Doc/lib/libregex.tex b/Doc/lib/libregex.tex index 18b8b18..e6fd708 100644 --- a/Doc/lib/libregex.tex +++ b/Doc/lib/libregex.tex @@ -136,8 +136,10 @@ be used inside groups (see below) as well. \item[\code{\e( \e)}] Indicates the start and end of a group; the contents of a group can be matched later in the string with the \code{\e [1-9]} special sequence, described next. -% -\fulllineitems\item[\code{\e \e 1, ... \e \e 7, \e 8, \e 9}] +\end{itemize} + +\begin{fulllineitems} +\item[\code{\e \e 1, ... \e \e 7, \e 8, \e 9}] Matches the contents of the group of the same number. For example, \code{\e (.+\e ) \e \e 1} matches 'the the' or '55 55', but not 'the end' (note the space after the group). This @@ -145,7 +147,9 @@ special sequence can only be used to match one of the first 9 groups; groups with higher numbers can be matched using the \code{\e v} sequence. (\code{\e 8} and \code{\e 9} don't need a double backslash because they are not octal digits.) -% +\end{fulllineitems} + +\begin{itemize} \item[\code{\e \e b}] Matches the empty string, but only at the beginning or end of a word. A word is defined as a sequence of alphanumeric characters, so the end of a word is indicated by diff --git a/Doc/libregex.tex b/Doc/libregex.tex index 18b8b18..e6fd708 100644 --- a/Doc/libregex.tex +++ b/Doc/libregex.tex @@ -136,8 +136,10 @@ be used inside groups (see below) as well. \item[\code{\e( \e)}] Indicates the start and end of a group; the contents of a group can be matched later in the string with the \code{\e [1-9]} special sequence, described next. -% -\fulllineitems\item[\code{\e \e 1, ... \e \e 7, \e 8, \e 9}] +\end{itemize} + +\begin{fulllineitems} +\item[\code{\e \e 1, ... \e \e 7, \e 8, \e 9}] Matches the contents of the group of the same number. For example, \code{\e (.+\e ) \e \e 1} matches 'the the' or '55 55', but not 'the end' (note the space after the group). This @@ -145,7 +147,9 @@ special sequence can only be used to match one of the first 9 groups; groups with higher numbers can be matched using the \code{\e v} sequence. (\code{\e 8} and \code{\e 9} don't need a double backslash because they are not octal digits.) -% +\end{fulllineitems} + +\begin{itemize} \item[\code{\e \e b}] Matches the empty string, but only at the beginning or end of a word. A word is defined as a sequence of alphanumeric characters, so the end of a word is indicated by |