]> git.lyx.org Git - features.git/commitdiff
comment debug output
authorGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Tue, 13 Feb 2007 19:55:56 +0000 (19:55 +0000)
committerGeorg Baum <Georg.Baum@post.rwth-aachen.de>
Tue, 13 Feb 2007 19:55:56 +0000 (19:55 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@17169 a592a061-630c-0410-9148-cb99ea01b6c8

development/tools/unicodesymbols.py

index d186275796cc224d78bd3436052031427a0476c7..429b55914f706b64a70083b836d6c9e9f5819576 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:
@@ -78,7 +78,7 @@ def complete(lines, start, stop):
                     combining = ""
                 line = [i, '#0x%04x ""                         "" "%s" # %s' % (i, combining, name)]
                 lines.insert(l, line)
-                print lines[l]
+#                print lines[l]
                 l = l + 1