[Python-checkins] CVS: python/dist/src/Doc/lib libre.tex,1.74,1.75

Fred L. Drake fdrake@users.sourceforge.net
Mon, 25 Feb 2002 10:56:47 -0800


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory usw-pr-cvs1:/tmp/cvs-serv14527/lib

Modified Files:
	libre.tex 
Log Message:
Fix error in explanation of the interaction between $ and MULTILINE mode.
Reported by Steve Alexander.


Index: libre.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libre.tex,v
retrieving revision 1.74
retrieving revision 1.75
diff -C2 -d -r1.74 -r1.75
*** libre.tex	14 Feb 2002 15:19:30 -0000	1.74
--- libre.tex	25 Feb 2002 18:56:45 -0000	1.75
***************
*** 102,106 ****
  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
  'foo1\textbackslash nfoo2\textbackslash n' matches 'foo2' normally,
  but 'foo1' in \constant{MULTILINE} mode.
--- 102,106 ----
  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
  'foo1\textbackslash nfoo2\textbackslash n' matches 'foo2' normally,
  but 'foo1' in \constant{MULTILINE} mode.