]> git.lyx.org Git - lyx.git/blobdiff - development/tools/unicodesymbols.py
Add patch-premable to development tools.
[lyx.git] / development / tools / unicodesymbols.py
index d186275796cc224d78bd3436052031427a0476c7..e63c0be36bda49ff6c2186833198ad2981f8972f 100644 (file)
@@ -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