From: hanwen Date: Thu, 28 Aug 2003 10:54:32 +0000 (+0000) Subject: * lily/paper-outputter.cc (output_version): change "Lily was here" X-Git-Tag: release/1.9.5~36 X-Git-Url: https://git.donarmstrong.com/lilypond.git?a=commitdiff_plain;h=010d05aa57d86dc102f06d0e9f6635f5fa2add33;p=lilypond.git * lily/paper-outputter.cc (output_version): change "Lily was here" into "Engraved by LilyPond" * lily/my-lily-lexer.cc (My_lily_lexer): don't crash on unquoted strings before \notenames. * lily/my-lily-lexer.cc: add \accacciatura and \appoggiatura --- diff --git a/ChangeLog b/ChangeLog index bded514059..0affdee979 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2003-08-28 Han-Wen Nienhuys + * lily/paper-outputter.cc (output_version): change "Lily was here" + into "Engraved by LilyPond" + * lily/my-lily-lexer.cc (My_lily_lexer): don't crash on unquoted strings before \notenames. diff --git a/input/regression/accidental-unbroken-tie-spacing.ly b/input/regression/accidental-unbroken-tie-spacing.ly index dd57c8377e..a2204bce51 100644 --- a/input/regression/accidental-unbroken-tie-spacing.ly +++ b/input/regression/accidental-unbroken-tie-spacing.ly @@ -5,19 +5,12 @@ the spacing when unbroken." } \version "1.9.2" -\include "deutsch.ly" rechts = \notes \relative c' { \clef treble \time 3/4 - \context Voice { - c8 h2 <>8 ~ | - <>8 - } -} - -Rechts = \context Staff \notes { - rechts + c8 b2 <>8 ~ | + <>8 } \score { diff --git a/lily/my-lily-lexer.cc b/lily/my-lily-lexer.cc index c69f23c5fa..b3445a8a84 100644 --- a/lily/my-lily-lexer.cc +++ b/lily/my-lily-lexer.cc @@ -242,21 +242,3 @@ My_lily_lexer::prepare_for_next_token () { last_input_ = here_input(); } - -#if 0 -SCM -My_lily_lexer::scan_markup_word (String s) -{ - /* - TODO: better implementation: - - - make a table of markup functions, for quicker lookup - - - error handling. - - */ - SCM s = scm_c_eval_str ((s + "-markup").to_str0()); - yylval.scm = s; - return MARKUP_HEAD; -} -#endif diff --git a/lily/paper-outputter.cc b/lily/paper-outputter.cc index e3ae43ae4c..6dc5125107 100644 --- a/lily/paper-outputter.cc +++ b/lily/paper-outputter.cc @@ -130,7 +130,7 @@ Paper_outputter::output_scope (SCM mod, String prefix) void Paper_outputter::output_version () { - String id_string = "Lily was here"; + String id_string = "Engraved by LilyPond"; id_string += String_convert::pad_to (String (", ") + version_string (), 40); output_String_def ("lilypondtagline", id_string);