summaryrefslogtreecommitdiff
path: root/pygments/formatters/latex.py
diff options
context:
space:
mode:
Diffstat (limited to 'pygments/formatters/latex.py')
-rw-r--r--pygments/formatters/latex.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/pygments/formatters/latex.py b/pygments/formatters/latex.py
index 305bb174..d3d4f0b5 100644
--- a/pygments/formatters/latex.py
+++ b/pygments/formatters/latex.py
@@ -149,6 +149,7 @@ class LatexFormatter(Formatter):
def format(self, tokensource, outfile):
# TODO: add support for background colors
+ enc = self.encoding
if self.full:
realoutfile = outfile
@@ -165,7 +166,9 @@ class LatexFormatter(Formatter):
outfile.write(']\n')
for ttype, value in tokensource:
- value = escape_tex(value.encode(self.encoding))
+ if enc:
+ value = value.encode(enc)
+ value = escape_tex(value)
cmd = self.ttype2cmd.get(ttype)
while cmd is None:
ttype = ttype.parent