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:
parent
486e4709c5
commit
683930cd9b
1 changed files with 1 additions and 1 deletions
|
@ -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($")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue