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

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


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

Modified Files:
      Tag: release22-maint
	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.73.6.1
retrieving revision 1.73.6.2
diff -C2 -d -r1.73.6.1 -r1.73.6.2
*** libre.tex	14 Feb 2002 15:22:04 -0000	1.73.6.1
--- libre.tex	25 Feb 2002 18:57:04 -0000	1.73.6.2
***************
*** 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.