--- pyPdf/pdf.py.orig 2010-12-04 14:49:56.000000000 -0800 +++ pyPdf/pdf.py 2011-02-09 09:17:29.000000000 -0800 @@ -1386,7 +1386,7 @@ if operator == "Tj": _text = operands[0] if isinstance(_text, TextStringObject): - text += _text + text += _text + " " elif operator == "T*": text += "\n" elif operator == "'": @@ -1402,7 +1402,7 @@ elif operator == "TJ": for i in operands[0]: if isinstance(i, TextStringObject): - text += i + text += i return text ##