# HG changeset patch # User wenzelm # Date 1213479223 -7200 # Node ID 31adee1f467a47e196fc310e7a19338e723bf151 # Parent a248dba028ffc27fdd8ea6347eb449746b107352 added ~: and ~=; fixed SOME, which is now \ not \; diff -r a248dba028ff -r 31adee1f467a lib/scripts/unsymbolize.pl --- a/lib/scripts/unsymbolize.pl Sat Jun 14 23:20:12 2008 +0200 +++ b/lib/scripts/unsymbolize.pl Sat Jun 14 23:33:43 2008 +0200 @@ -32,7 +32,9 @@ s/\\?\\\\?\\/-->/g; s/\\?\\/->/g; s/\\?\\/~/g; - s/\\?\\ ?/SOME /g; + s/\\?\\/~:/g; + s/\\?\\/~=/g; + s/\\?\\ ?/SOME /g; # outer syntax s/\\?\\/==/g; s/\\?\\/=>/g;