'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:
andersvi 2009-03-17 09:26:52 +00:00
parent b9cb95e93f
commit 89784e1ee8

View file

@ -52,7 +52,7 @@
;; punctuation ;; punctuation
(modify-syntax-entry ?: "." table) (modify-syntax-entry ?: "." table)
(modify-syntax-entry ?\; "." table) (modify-syntax-entry ?\; "." table)
(modify-syntax-entry ?\^ "." table) (modify-syntax-entry ?^ "." table)
;; parenthesis ;; parenthesis
(modify-syntax-entry ?\( "()" table) (modify-syntax-entry ?\( "()" table)
(modify-syntax-entry ?\) ")(" table) (modify-syntax-entry ?\) ")(" table)