From: Richard Heck Date: Sat, 6 Nov 2010 18:42:19 +0000 (+0000) Subject: Remove one FIXME. X-Git-Tag: 2.0.0~1954 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=0a7187b946a089df13c23784b684c0fba8e48cd3;p=features.git Remove one FIXME. Remove "added by lyx2lyx"-type comment. This is now added automatically by add_to_preamble (and insert_to_preamble, too). git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36166 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/lyx2lyx/lyx_2_0.py b/lib/lyx2lyx/lyx_2_0.py index 40238724a3..8b5b58b483 100644 --- a/lib/lyx2lyx/lyx_2_0.py +++ b/lib/lyx2lyx/lyx_2_0.py @@ -750,7 +750,6 @@ def convert_author_id(document): name = m.group(2) email = m.group(3) document.header[i] = "\\author %i %s %s" % (anum, name, email) - # FIXME Should this really be incremented if we didn't match? anum += 1 i += 1 @@ -995,7 +994,6 @@ def revert_multirow(document): i = cend if multirow == True: - add_to_preamble(document, ["% this command was inserted by lyx2lyx"]) add_to_preamble(document, ["\\usepackage{multirow}"])