From ae361aff19ccee24f37e49af35cb2c9f9ceb619e Mon Sep 17 00:00:00 2001 From: Enrico Forestieri Date: Wed, 1 Jun 2011 15:21:16 +0000 Subject: [PATCH] Apparently, this extra check is not necessary as the first one works whatever the TeX engine. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@38918 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/configure.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/configure.py b/lib/configure.py index 6b59150950..c14bf0b04a 100644 --- a/lib/configure.py +++ b/lib/configure.py @@ -1305,8 +1305,6 @@ def checkTeXAllowSpaces(): if LATEX != '': if os.name == 'nt' or sys.platform == 'cygwin': latex_out = cmdOutput(LATEX + r""" "\nonstopmode\input{\"a b\"}" """) - if not 'working' in latex_out: - latex_out = cmdOutput(LATEX + r' "\nonstopmode\input{a b}"') else: latex_out = cmdOutput(LATEX + r""" '\nonstopmode\input{"a b"}' """) else: