From ddf9ed7608b9117c37a988f47fd1ba23d3b75e7e Mon Sep 17 00:00:00 2001 From: Richard Heck Date: Thu, 4 Nov 2010 21:42:24 +0000 Subject: [PATCH] Minor structural improvement. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36093 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/lyx2lyx/lyx_2_0.py | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/lib/lyx2lyx/lyx_2_0.py b/lib/lyx2lyx/lyx_2_0.py index a2f5ec2d42..45c8c57d4f 100644 --- a/lib/lyx2lyx/lyx_2_0.py +++ b/lib/lyx2lyx/lyx_2_0.py @@ -1769,7 +1769,6 @@ def revert_mathdots(document): " Load mathdots if used in the document " mathdots = find_token(document.header, "\\use_mathdots" , 0) - usedots = 1 if mathdots == -1: document.warning("No \\usemathdots line. Assuming auto.") else: @@ -1778,18 +1777,17 @@ def revert_mathdots(document): try: usedots = int(val) except: - document.warning("Invalid \\use_mathdots value: " + val) + document.warning("Invalid \\use_mathdots value: " + val + ". Assuming auto.") # probably usedots has not been changed, but be safe. usedots = 1 - if usedots == 0: - # do not load case - return - - if usedots == 2: - # force load case - add_to_preamble(["% lyx2lyx mathdots addition", "\\usepackage{mathdots}"]) - return + if usedots == 0: + # do not load case + return + if usedots == 2: + # force load case + add_to_preamble(["% lyx2lyx mathdots addition", "\\usepackage{mathdots}"]) + return # so we are in the auto case. we want to load mathdots if \iddots is used. i = 0 -- 2.39.5