]> git.lyx.org Git - features.git/blobdiff - development/tools/unicodesymbols.py
Update gen_lfuns.py to current format
[features.git] / development / tools / unicodesymbols.py
old mode 100644 (file)
new mode 100755 (executable)
index d186275..e63c0be
@@ -65,7 +65,7 @@ def complete(lines, start, stop):
     for i in range(start, stop):
         # This catches both comments (lines[l][0] == -1) and code points less than i
         while l < len(lines) and lines[l][0] < i:
-            print lines[l]
+#            print lines[l]
             l = l + 1
             continue
         if l >= len(lines) or lines[l][0] != i:
@@ -76,9 +76,9 @@ def complete(lines, start, stop):
                     combining = "combining"
                 else:
                     combining = ""
-                line = [i, '#0x%04x ""                         "" "%s" # %s' % (i, combining, name)]
+                line = [i, '#0x%04x ""                         "" "%s" "" "" # %s' % (i, combining, name)]
                 lines.insert(l, line)
-                print lines[l]
+#                print lines[l]
                 l = l + 1