]> git.lyx.org Git - features.git/commitdiff
Whitespace.
authorRichard Heck <rgheck@lyx.org>
Fri, 27 Nov 2015 03:08:43 +0000 (22:08 -0500)
committerRichard Heck <rgheck@lyx.org>
Fri, 27 Nov 2015 04:21:07 +0000 (23:21 -0500)
lib/scripts/prefs2prefs_lfuns.py

index e06af7ce202cbdb50d04107c8d559be4ce3f6a4c..78d85141f196a40a6c2c360527a3e3cd353bd3fe 100644 (file)
@@ -133,6 +133,7 @@ def paragraph_spacing(line):
 def tabular_feature(line):
        return simple_renaming(line, "tabular-feature", "inset-modify tabular")
 
+
 re_Bar2bar = re.compile(r'^(\\(?:bind|unbind))\s+"([^"]*)Bar"(\s+"[^"]+")')
 def Bar2bar(line):
        m = re_Bar2bar.search(line)
@@ -145,15 +146,19 @@ def Bar2bar(line):
        newline = btype + " \"" + mod + "bar\"" + rest
        return (True, newline)
 
+
 def paragraph_break(line):
        return simple_renaming(line, "break-paragraph", "paragraph-break")
 
+
 def tab_group_close(line):
        return simple_renaming(line, "close-tab-group", "tab-group-close")
 
+
 def view_split(line):
        return simple_renaming(line, "split-view", "view-split")
 
+
 def label_copy_as_reference(line):
        return simple_renaming(line, "copy-label-as-reference", "label-copy-as-reference")