]> git.lyx.org Git - lyx.git/commitdiff
Do not reverse parentheses in pass thru insets (#12966)
authorJuergen Spitzmueller <spitz@lyx.org>
Wed, 8 Nov 2023 14:14:37 +0000 (15:14 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Wed, 8 Nov 2023 14:14:37 +0000 (15:14 +0100)
lib/lyx2lyx/lyx_2_4.py

index 41c1aa465e873350b54ee16d84500e0b66501a28..4b015d0d46759418eb991f9ca161ff341ef0e9c3 100644 (file)
@@ -1529,6 +1529,8 @@ def convert_hebrew_parentheses(document):
     """
     # print("convert hebrew parentheses")
     current_languages = [document.language]
+    # skip math and pass thru insets
+    skip_insets = ['Formula', 'ERT', 'listings']
     i = 0
     while i < len(document.body):
         line = document.body[i]
@@ -1539,10 +1541,13 @@ def convert_hebrew_parentheses(document):
             # print (line, current_languages[-1])
         elif line.startswith('\\end_layout'):
             current_languages.pop()
-        elif line.startswith('\\begin_inset Formula'):
-            # In math, parentheses must not be changed
-            i = find_end_of_inset(document.body, i)
-            continue
+        elif line.startswith('\\begin_inset '):
+            tokenend = len('\\begin_inset ')
+            inset = line[tokenend:].strip()
+            if inset in skip_insets:
+                # In these insets, parentheses must not be changed
+                i = find_end_of_inset(document.body, i)
+                continue
         elif current_languages[-1] == 'hebrew' and not line.startswith('\\'):
             document.body[i] = line.replace('(','\x00').replace(')','(').replace('\x00',')')
         i += 1