diff options
author | Fred Drake <fdrake@acm.org> | 2002-02-25 18:57:04 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2002-02-25 18:57:04 (GMT) |
commit | b38f188f348d57f07bb71dfc7789bc14cd2d4140 (patch) | |
tree | 732042d4a45cc722a72f3a2c41c7b2b3831fb40c | |
parent | 679e4314fdb37190a9d88876a87681bdb35960d4 (diff) | |
download | cpython-b38f188f348d57f07bb71dfc7789bc14cd2d4140.zip cpython-b38f188f348d57f07bb71dfc7789bc14cd2d4140.tar.gz cpython-b38f188f348d57f07bb71dfc7789bc14cd2d4140.tar.bz2 |
Fix error in explanation of the interaction between $ and MULTILINE mode.
Reported by Steve Alexander.
-rw-r--r-- | Doc/lib/libre.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libre.tex b/Doc/lib/libre.tex index 37c249e..1c14072 100644 --- a/Doc/lib/libre.tex +++ b/Doc/lib/libre.tex @@ -101,7 +101,7 @@ after each newline. newline at the end of the string, and in \constant{MULTILINE} mode also matches before a newline. \regexp{foo} matches both 'foo' and 'foobar', while the regular expression \regexp{foo\$} matches only -'foo'. More interestingly, searching for \regexp{foo\$} in +'foo'. More interestingly, searching for \regexp{foo.\$} in 'foo1\textbackslash nfoo2\textbackslash n' matches 'foo2' normally, but 'foo1' in \constant{MULTILINE} mode. |