mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
Minor structural improvement.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36093 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
27f4623b57
commit
ddf9ed7608
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user