]> git.donarmstrong.com Git - lilypond.git/commitdiff
add a comment about LilyPond specific escape characters
authorHeikki Junes <heikki.junes@hut.fi>
Tue, 15 Jul 2003 22:17:49 +0000 (22:17 +0000)
committerHeikki Junes <heikki.junes@hut.fi>
Tue, 15 Jul 2003 22:17:49 +0000 (22:17 +0000)
ChangeLog
lilypond-font-lock.el

index 0a628fb95648ac8571a8219dd907b099bd8f499b..c3f27b2ef617fff4af10da43a36e507b5efeebb9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-07-16  Heikki Junes  <hjunes@cc.hut.fi>
+
+       * lilypond-font-lock.el: add a comment about LilyPond specific
+       escape characters: ^, - and _, in the syntax table.
+
 2003-07-15  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
 
        * input/test/trills.ly (endHorizScript): fixes.
index 6e1e6ee91b74015545afca457bbcd445d4f100ab..b4ab0cf84fb582d112b27f366d855fdc36559cf4 100644 (file)
            ( ?\$ . "." ) ( ?\& . "." )
            ( ?\* . "." ) ( ?\+ . "." ) ( ?\/ . "." )  ( ?\= . "." )
            ( ?\| . "." )      ; bar line
-           ( ?\- . "." ) ( ?\_ . "." ) ( ?\^ . "." ) ; accent positioners
+           ;; In LilyPond the following chars serve as escape chars, 
+           ;; e.g., c^> d-) e_( , but they are set to punctuation chars, 
+           ;; since inside strings they should not act as escape chars
+           ( ?\- . "\\" ) ( ?\_ . "." ) ( ?\^ . "." )
            ))
   )