|
From: <mi...@us...> - 2013-02-13 13:16:09
|
Revision: 7602
http://docutils.svn.sourceforge.net/docutils/?rev=7602&view=rev
Author: milde
Date: 2013-02-13 13:16:01 +0000 (Wed, 13 Feb 2013)
Log Message:
-----------
Fix [ 3603246 ] Bug in option "--graphicx-option=auto".
Modified Paths:
--------------
trunk/docutils/HISTORY.txt
trunk/docutils/docutils/writers/latex2e/__init__.py
Modified: trunk/docutils/HISTORY.txt
===================================================================
--- trunk/docutils/HISTORY.txt 2013-02-12 21:24:37 UTC (rev 7601)
+++ trunk/docutils/HISTORY.txt 2013-02-13 13:16:01 UTC (rev 7602)
@@ -42,6 +42,7 @@
English typographic ones.
Activate the SmartQuotes_ transform if you want this feature.
- Fix literal use of babel shorthands (straight quote, tilde, ...).
+ - Fix [ 3603246 ] Bug in option "--graphicx-option=auto".
.. _SmartQuotes: docs/user/config.html#smart-quotes
Modified: trunk/docutils/docutils/writers/latex2e/__init__.py
===================================================================
--- trunk/docutils/docutils/writers/latex2e/__init__.py 2013-02-12 21:24:37 UTC (rev 7601)
+++ trunk/docutils/docutils/writers/latex2e/__init__.py 2013-02-13 13:16:01 UTC (rev 7602)
@@ -555,7 +555,7 @@
\usepackage{graphicx}
\else
\usepackage[pdftex]{graphicx}
-\fi'))"""
+\fi"""
PreambleCmds.highlight_rules = r"""% basic code highlight:
\providecommand*\DUrolecomment[1]{\textcolor[rgb]{0.40,0.40,0.40}{#1}}
@@ -782,7 +782,7 @@
0x00b3: ur'\textthreesuperior{}', # ³ SUPERSCRIPT THREE
0x00b4: ur'\textasciiacute{}', # ´ ACUTE ACCENT
0x00b5: ur'\textmu{}', # µ MICRO SIGN
- 0x00b6: ur'\textparagraph{}', # ¶ PILCROW SIGN # not equal to \textpilcrow
+ 0x00b6: ur'\textparagraph{}', # ¶ PILCROW SIGN # != \textpilcrow
0x00b9: ur'\textonesuperior{}', # ¹ SUPERSCRIPT ONE
0x00ba: ur'\textordmasculine{}', # º MASCULINE ORDINAL INDICATOR
0x00bc: ur'\textonequarter{}', # 1/4 FRACTION
@@ -790,7 +790,7 @@
0x00be: ur'\textthreequarters{}', # 3/4 FRACTION
0x00d7: ur'\texttimes{}', # × MULTIPLICATION SIGN
0x00f7: ur'\textdiv{}', # ÷ DIVISION SIGN
- #
+ # others
0x0192: ur'\textflorin{}', # LATIN SMALL LETTER F WITH HOOK
0x02b9: ur'\textasciiacute{}', # MODIFIER LETTER PRIME
0x02ba: ur'\textacutedbl{}', # MODIFIER LETTER DOUBLE PRIME
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|