From: fred <fred>
Date: Tue, 26 Mar 2002 21:28:30 +0000 (+0000)
Subject: lilypond-1.1.1
X-Git-Tag: release/1.5.59~2807
X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=4ff87f742abe7afbdda12c0b41a255c2521ea7f1;p=lilypond.git

lilypond-1.1.1
---

diff --git a/lily/lexer.ll b/lily/lexer.ll
index 43fffba484..b61c4c1975 100644
--- a/lily/lexer.ll
+++ b/lily/lexer.ll
@@ -89,7 +89,6 @@ HORIZONTALWHITE		[ \t]
 BLACK		[^ \n\t\f\r]
 RESTNAME	[rs]
 NOTECOMMAND	\\{A}+
-ANDREWLYRICS		([^ \n\t\f\\{}<>0-9";.|]|\\[^a-zA-Z\]\[<>])[^0-9 \t\n\f]
 LYRICS		({AA}|{TEX})[^0-9 \t\n\f]*
 ESCAPED		[nt\\'"]
 PLET		\\\[
@@ -159,10 +158,10 @@ TELP		\\\]
 	Identifier * id = lookup_identifier (s);
 	if (id) 
 	  {
-	    String* s_p = id->access_String ();
-	    DOUT << "#include `" << *s_p << "\'\n";
-	    new_input (*s_p, source_global_l);
-	    delete s_p;
+	    String* s_l = id->access_content_String (false);
+	    DOUT << "#include `" << *s_l << "\'\n";
+	    new_input (*s_l, source_global_l);
+
 	    yy_pop_state ();
 	  }
 	else