]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lily-lexer-scheme.cc
Update musicexp.py with new \sustain* and \arpeggio* syntax
[lilypond.git] / lily / lily-lexer-scheme.cc
index 62c2959791ddb1c77c943c0bf9384b0637eca22d..e619c8e7957ca45bafba98437c5e076ebc7838f8 100644 (file)
@@ -9,11 +9,12 @@
 
 #include "lily-lexer.hh"
 
-LY_DEFINE(ly_lexer_keywords, "ly:lexer-keywords",
+LY_DEFINE (ly_lexer_keywords, "ly:lexer-keywords",
          1, 0, 0, (SCM lexer),
-         "Return a list of (KEY . CODE) pairs, signifying the lilypond reserved words list.")
+         "Return a list of @code{(KEY . CODE)} pairs, signifying the"
+         " LilyPond reserved words list.")
 {
-  LY_ASSERT_FIRST_SMOB(Lily_lexer, lexer);
+  LY_ASSERT_SMOB (Lily_lexer, lexer, 1);
 
   Lily_lexer * lex = Lily_lexer::unsmob (lexer);
   return lex->keyword_list ();