X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Flily-lexer-scheme.cc;h=c5a0bc5b7ad1e407f96bb182ce894ccd7866d861;hb=47db9a3883d726ca53e2133a3b2298f78dd6a32e;hp=a04ed259ae0b7951d7a6bb2e28985373bd064a5f;hpb=b7a0cffbf9d1069860368f289a5b50e9d1d90ba8;p=lilypond.git diff --git a/lily/lily-lexer-scheme.cc b/lily/lily-lexer-scheme.cc index a04ed259ae..c5a0bc5b7a 100644 --- a/lily/lily-lexer-scheme.cc +++ b/lily/lily-lexer-scheme.cc @@ -1,8 +1,8 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 2006--2009 Han-Wen Nienhuys - + Copyright (C) 2006--2015 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -21,12 +21,12 @@ #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 = Lily_lexer::unsmob (lexer); return lex->keyword_list (); }