From: José Matox Date: Mon, 18 Jul 2005 14:46:53 +0000 (+0000) Subject: fix two typos converting frenchb (Thanks to Georg) X-Git-Tag: 1.6.10~14022 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=54502b890ea566747bba5ba4ef18b4099d6cd859;p=lyx.git fix two typos converting frenchb (Thanks to Georg) git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10327 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/lyx2lyx/ChangeLog b/lib/lyx2lyx/ChangeLog index 810d13f2a9..6aab341a5f 100644 --- a/lib/lyx2lyx/ChangeLog +++ b/lib/lyx2lyx/ChangeLog @@ -1,3 +1,7 @@ +2005-07-18 José Matos + + * lyx_1_4.py (convert_french): fix two typos (Thanks to Georg Baum). + 2005-07-18 José Matos * lyx_1_4.py (convert_french): convert language also in the body. diff --git a/lib/lyx2lyx/lyx_1_4.py b/lib/lyx2lyx/lyx_1_4.py index a2e56d763f..9b4803a623 100644 --- a/lib/lyx2lyx/lyx_1_4.py +++ b/lib/lyx2lyx/lyx_1_4.py @@ -1858,13 +1858,13 @@ def convert_french(file): file.header[i] = "\\language french" # Change language in the document body - regexp = re.compile(r'^\\lang\s+frenchb') + regexp = re.compile(r'^\\lang\s+frenchb') i = 0 while 1: i = find_re(file.body, regexp, i) if i == -1: break - file.body[i] = "\\language french" + file.body[i] = "\\lang french" i = i + 1