From: Richard Heck Date: Thu, 4 Nov 2010 21:42:24 +0000 (+0000) Subject: Minor structural improvement. X-Git-Tag: 2.0.0~2022 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ddf9ed7608b9117c37a988f47fd1ba23d3b75e7e;p=lyx.git Minor structural improvement. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36093 a592a061-630c-0410-9148-cb99ea01b6c8 --- 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