Fix bug with ScelDocument string_ : backslashes needed to be escaped

This commit is contained in:
James Harkins 2011-12-17 09:18:44 +08:00
parent 5b399b4293
commit 486e4709c5

View file

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