Update of /cvsroot/wisp/wisp/users/dig
In directory sc8-pr-cvs1:/tmp/cvs-serv12327
Modified Files:
linkie.py
Log Message:
use `\' instead of ^^ in Linkie.dump output
Index: linkie.py
===================================================================
RCS file: /cvsroot/wisp/wisp/users/dig/linkie.py,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -d -r1.8 -r1.9
--- linkie.py 15 Feb 2003 15:35:30 -0000 1.8
+++ linkie.py 15 Feb 2003 15:42:52 -0000 1.9
@@ -282,6 +282,6 @@
if rnotes.has_key(offset):
for typ, arg in rnotes[offset]:
print ' ' * (14 + (offset & 15) * 3) + \
- '^^-' * abs(typ) + arg
+ "`'-" * abs(typ) + arg
start = stop
row += 16
|