]> git.lyx.org Git - features.git/blobdiff - lib/scripts/layout2layout.py
Support FreeSpacing in InsetArgument
[features.git] / lib / scripts / layout2layout.py
index 8fdc9fdf7299a4f7eda4eca62f8975be535c2a5a..80a21d78131123fdf88c481ae47886e755d56420 100644 (file)
@@ -11,7 +11,7 @@
 # This script will update a .layout file to current format
 
 # The latest layout format is also defined in src/TextClass.cpp
-currentFormat = 74
+currentFormat = 75
 
 
 # Incremented to format 4, 6 April 2007, lasgouttes
@@ -248,6 +248,9 @@ currentFormat = 74
 # Incremented to format 74, 18 April 2019 by spitz
 # New InsetLayout and Argument tag NewlineCmd
 
+# Incremented to format 75, 2 June 2019 by spitz
+# New Argument tag FreeSpacing
+
 # Do not forget to document format change in Customization
 # Manual (section "Declaring a new text class").
 
@@ -497,7 +500,7 @@ def convert(lines, end_format):
                 i += 1
             continue
 
-        if format >= 65 and format <= 73:
+        if format >= 65 and format <= 74:
             # nothing to do.
             i += 1
             continue