X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=development%2Ftools%2Funicodesymbols.py;h=e63c0be36bda49ff6c2186833198ad2981f8972f;hb=3cc6e033780fda32a22d4ae0fe91a7659dc7a80d;hp=d186275796cc224d78bd3436052031427a0476c7;hpb=feb789596568ab01d21943f1595ddb321142797d;p=lyx.git diff --git a/development/tools/unicodesymbols.py b/development/tools/unicodesymbols.py index d186275796..e63c0be36b 100644 --- a/development/tools/unicodesymbols.py +++ b/development/tools/unicodesymbols.py @@ -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