Made annoted C files easier to read.
authorWilliam Stein <wstein@gmail.com>
Fri, 3 Nov 2006 17:33:27 +0000 (09:33 -0800)
committerWilliam Stein <wstein@gmail.com>
Fri, 3 Nov 2006 17:33:27 +0000 (09:33 -0800)
Cython/Compiler/Code.py

index f5edf51285f1bd6d3618a6f1851eb12192791d02..062efb6a0f420c6e359598a27801a06c78a7d44a 100644 (file)
@@ -95,7 +95,7 @@ class CCodeWriter:
             s = contents[i]
             if i+1 == line:   # line numbers in pyrex start counting up from 1
                 s = s.rstrip() + '             # <<<<<<<<<<<<<< ' + '\n'
-            context += s
+            context += " * " + s
         
         self.marker = '"%s":%s\n%s' % (file, line, context)