'unescaped' caret (removed backslash) character in syntax-table to not
break compilation in emacs v.23. (string (char-syntax ?\^)) -> breaks in v. 22 as well, however mofify-syntax-entry accepts it... git-svn-id: https://supercollider.svn.sourceforge.net/svnroot/supercollider/trunk@8942 a380766d-ff14-0410-b294-a243070f3f08
This commit is contained in:
parent
b9cb95e93f
commit
89784e1ee8
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@
|
|||
;; punctuation
|
||||
(modify-syntax-entry ?: "." table)
|
||||
(modify-syntax-entry ?\; "." table)
|
||||
(modify-syntax-entry ?\^ "." table)
|
||||
(modify-syntax-entry ?^ "." table)
|
||||
;; parenthesis
|
||||
(modify-syntax-entry ?\( "()" table)
|
||||
(modify-syntax-entry ?\) ")(" table)
|
||||
|
|
Loading…
Reference in a new issue