[Python-checkins] r66604 - in doctools/trunk: sphinx/util/texescape.py

georg.brandl python-checkins at python.org
Wed Sep 24 19:08:47 CEST 2008


Author: georg.brandl
Date: Wed Sep 24 19:08:47 2008
New Revision: 66604

Log:
Merged revisions 66588,66602 via svnmerge from 
svn+ssh://pythondev@svn.python.org/doctools/branches/0.4.x

........
  r66588 | georg.brandl | 2008-09-24 17:25:43 +0200 (Wed, 24 Sep 2008) | 2 lines
  
  Fix footer marking.
........
  r66602 | georg.brandl | 2008-09-24 19:02:31 +0200 (Wed, 24 Sep 2008) | 2 lines
  
  Escape backtick in texescape.
........


Modified:
   doctools/trunk/   (props changed)
   doctools/trunk/sphinx/util/texescape.py

Modified: doctools/trunk/sphinx/util/texescape.py
==============================================================================
--- doctools/trunk/sphinx/util/texescape.py	(original)
+++ doctools/trunk/sphinx/util/texescape.py	Wed Sep 24 19:08:47 2008
@@ -20,6 +20,7 @@
     (u'}', ur'\}'),
     (u'[', ur'{[}'),
     (u']', ur'{]}'),
+    (u'`', ur'{}`'),
     (u'\\',ur'\textbackslash{}'),
     (u'~', ur'\textasciitilde{}'),
     (u'<', ur'\textless{}'),


More information about the Python-checkins mailing list