Skip to content

Commit

Permalink
disasm: Escape and quote strings
Browse files Browse the repository at this point in the history
  • Loading branch information
Benabik committed Oct 17, 2011
1 parent d34eec9 commit f45d8a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/disasm.winxed
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ function constant_table(var packfile) {
say( ' ', size, ' string constants:' );
for (i = 0; i < size; i++) {
string s = arr[i];
say( ' ', i, ' (', encoding_name(s), '): ', s );
say( ' ', i, ' (', encoding_name(s), '): "', escape(s), '"' );
}

arr = packfile.pmcs;
Expand Down

0 comments on commit f45d8a1

Please sign in to comment.