Bonehead: If you plan to escape \, do it FIRST before escaping anything else

This fixes an "Error in command handler" in emacs
This commit is contained in:
James Harkins 2011-12-20 09:29:42 +08:00
parent 486e4709c5
commit 683930cd9b

View file

@ -43,7 +43,7 @@
storeLispOn { arg stream;
// note, extra space after \\ is for emacs paren matching
// not syntactically significant
stream.put($").putAll(this.escapeChar($").escapeChar($\\ )).put($")
stream.put($").putAll(this.escapeChar($\\ ).escapeChar($")).put($")
}
}