]> git.lyx.org Git - lyx.git/commitdiff
fix two typos converting frenchb (Thanks to Georg)
authorJosé Matox <jamatos@lyx.org>
Mon, 18 Jul 2005 14:46:53 +0000 (14:46 +0000)
committerJosé Matox <jamatos@lyx.org>
Mon, 18 Jul 2005 14:46:53 +0000 (14:46 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@10327 a592a061-630c-0410-9148-cb99ea01b6c8

lib/lyx2lyx/ChangeLog
lib/lyx2lyx/lyx_1_4.py

index 810d13f2a91e16bbc6760731fd591891fcbf40cf..6aab341a5f3494ce3bf72090804418bc3425062f 100644 (file)
@@ -1,3 +1,7 @@
+2005-07-18  José Matos  <jamatos@lyx.org>
+
+       * lyx_1_4.py (convert_french): fix two typos (Thanks to Georg Baum).
+
 2005-07-18  José Matos  <jamatos@lyx.org>
 
        * lyx_1_4.py (convert_french): convert language also in the body.
index a2e56d763f554bf088faf9e1880bc82804d8a3fe..9b4803a62333036f0c7a4ee77341769e07ce0429 100644 (file)
@@ -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