Fix bug with ScelDocument string_ : backslashes needed to be escaped
This commit is contained in:
parent
5b399b4293
commit
486e4709c5
1 changed files with 3 additions and 1 deletions
|
@ -41,7 +41,9 @@
|
||||||
^this
|
^this
|
||||||
}
|
}
|
||||||
storeLispOn { arg stream;
|
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($")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue