From 626eba224425e393df3f0e81e9d723577e7ad050 Mon Sep 17 00:00:00 2001 From: Angus Leeming Date: Fri, 7 Feb 2003 11:25:12 +0000 Subject: [PATCH] Enable the lyx2lyx debug level to be set git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@6050 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/ChangeLog | 4 ++++ lib/lyx2lyx/lyx2lyx | 4 ++-- status.13x | 1 + 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/ChangeLog b/lib/ChangeLog index b0b8f3e843..6ea82817cb 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,7 @@ +2003-02-07 Angus Leeming + + * lyx2lyx/lyx2lyx: enable the debug level to be set. + 2003-02-04 Joao Luis Meloni Assirati * images/math/rbracket.xpm: new file. diff --git a/lib/lyx2lyx/lyx2lyx b/lib/lyx2lyx/lyx2lyx index cb5097919b..aefa08ab8d 100755 --- a/lib/lyx2lyx/lyx2lyx +++ b/lib/lyx2lyx/lyx2lyx @@ -55,9 +55,9 @@ Options: def parse_options(argv): - _options = ["help", "version", "list", "from=", "to=", "output=", "quiet"] + _options = ["help", "version", "list", "debug=", "from=", "to=", "output=", "quiet"] try: - opts, args = getopt.getopt(argv[1:], "f:hlo:qt:v", _options) + opts, args = getopt.getopt(argv[1:], "d:f:hlo:qt:v", _options) except getopt.error: usage() sys.exit(2) diff --git a/status.13x b/status.13x index 7720bb9c10..cd9fc336e9 100644 --- a/status.13x +++ b/status.13x @@ -21,3 +21,4 @@ What's new ** Bug fixes +lyx2lyx: enable the debug level to be set.