]> git.lyx.org Git - lyx.git/commitdiff
spelling fix
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Tue, 26 Apr 2005 15:45:51 +0000 (15:45 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Tue, 26 Apr 2005 15:45:51 +0000 (15:45 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9880 a592a061-630c-0410-9148-cb99ea01b6c8

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

index 55ba52efc5097ad4d732cf56f60be9eafdb507db..d9d81782c1b6d27352469333564c1f9e105d9b8e 100644 (file)
@@ -1,5 +1,6 @@
 2005-04-26  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
 
 2005-04-26  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
 
+       * lyx_1_4.py (convert_breaks): fix spelling
        * lyx_1_4.py (convert_breaks): fix copy-and-paste error
 
 2005-02-20  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
        * lyx_1_4.py (convert_breaks): fix copy-and-paste error
 
 2005-02-20  Georg Baum  <Georg.Baum@post.rwth-aachen.de>
index 125086ee275355f8bd16f2d005fbc4749c211d56..7491dcad53d32010c1813450a1260b115f22f4b0 100644 (file)
@@ -585,21 +585,21 @@ def convert_breaks(file):
 
         if pb_bot !=-1 or line_bot != -1 or vspace_bot != -1:
 
 
         if pb_bot !=-1 or line_bot != -1 or vspace_bot != -1:
 
-            paragraph_bellow = ['','\\begin_layout Standard','','']
+            paragraph_below = ['','\\begin_layout Standard','','']
 
             if line_bot != -1:
 
             if line_bot != -1:
-                paragraph_bellow.extend(['\\lyxline ',''])
+                paragraph_below.extend(['\\lyxline ',''])
 
             if vspace_bot != -1:
 
             if vspace_bot != -1:
-                paragraph_bellow.extend(['\\begin_inset VSpace ' + vspace_bot_value,'\\end_inset','',''])
+                paragraph_below.extend(['\\begin_inset VSpace ' + vspace_bot_value,'\\end_inset','',''])
 
             if pb_bot != -1:
 
             if pb_bot != -1:
-                paragraph_bellow.extend(['\\newpage ',''])
+                paragraph_below.extend(['\\newpage ',''])
 
 
-            paragraph_bellow.extend(['\\end_layout',''])
+            paragraph_below.extend(['\\end_layout',''])
 
             #inset new paragraph above the current paragraph
 
             #inset new paragraph above the current paragraph
-            file.body[k + 1: k + 1] = paragraph_bellow
+            file.body[k + 1: k + 1] = paragraph_below
 
 
 ##
 
 
 ##