]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lily-lexer-scheme.cc
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / lily / lily-lexer-scheme.cc
index fa67c1f21ad937bb71ddab0211ea1b1f2a9d204b..6ce3f7b90dd2e9b2288db828c21c288cadd12adf 100644 (file)
@@ -1,8 +1,8 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2006--2010 Han-Wen Nienhuys <hanwen@lilypond.org>
-  
+  Copyright (C) 2006--2015 Han-Wen Nienhuys <hanwen@lilypond.org>
+
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
 #include "lily-lexer.hh"
 
 LY_DEFINE (ly_lexer_keywords, "ly:lexer-keywords",
-         1, 0, 0, (SCM lexer),
-         "Return a list of @code{(KEY . CODE)} pairs, signifying the"
-         " LilyPond reserved words list.")
+           1, 0, 0, (SCM lexer),
+           "Return a list of @code{(KEY . CODE)} pairs, signifying the"
+           " LilyPond reserved words list.")
 {
   LY_ASSERT_SMOB (Lily_lexer, lexer, 1);
 
-  Lily_lexer * lex = Lily_lexer::unsmob (lexer);
+  Lily_lexer *lex = unsmob<Lily_lexer> (lexer);
   return lex->keyword_list ();
 }