Hi List,

As I'll be offline this weekend, and Han-Wen might be as well,
here's a fix for a small slip of the keys.

Jan.

Generated by [EMAIL PROTECTED],
>From = lilypond-1.3.39, To = lilypond-1.3.39.jcn1

usage 

    cd lilypond-source-dir; patch -E -p1 < lilypond-1.3.39.jcn1.diff

Patches do not contain automatically generated files 
or (urg) empty directories, 
i.e., you should rerun autoconf, configure

diff -urN ../lilypond-1.3.39/CHANGES ./CHANGES
--- ../lilypond-1.3.39/CHANGES  Fri Mar 24 15:51:45 2000
+++ ./CHANGES   Fri Mar 24 17:40:59 2000
@@ -1,3 +1,8 @@
+2000-03-24    <[EMAIL PROTECTED]>
+
+* lily/lexer.ll (My_lily_lexer): Bugfix: lookup chordmodifiers in the
+       chord-modifier table (not in the pitch list).
+
 1.3.38.hwn2
 ===========
 
diff -urN ../lilypond-1.3.39/VERSION ./VERSION
--- ../lilypond-1.3.39/VERSION  Fri Mar 24 15:47:32 2000
+++ ./VERSION   Fri Mar 24 17:39:53 2000
@@ -2,7 +2,7 @@
 MAJOR_VERSION=1
 MINOR_VERSION=3
 PATCH_LEVEL=39
-MY_PATCH_LEVEL=
+MY_PATCH_LEVEL=jcn1
 
 # use the above to send patches: MY_PATCH_LEVEL is always empty for a
 # released version.
diff -urN ../lilypond-1.3.39/lily/lexer.ll ./lily/lexer.ll
--- ../lilypond-1.3.39/lily/lexer.ll    Fri Mar 24 13:24:42 2000
+++ ./lily/lexer.ll     Fri Mar 24 17:36:36 2000
@@ -511,7 +511,7 @@
                    yylval.pitch->set_spot (Input (source_file_l (), 
                      here_ch_C ()));
                     return (YYSTATE == notes) ? NOTENAME_PITCH : TONICNAME_PITCH;
-               } else if ((pitch = scm_hashq_ref (pitchname_tab_, sym, SCM_BOOL_F))!= 
SCM_BOOL_F)
+               } else if ((pitch = scm_hashq_ref (chordmodifier_tab_, sym, 
+SCM_BOOL_F))!= SCM_BOOL_F)
                {
                    yylval.pitch = new Musical_pitch (pitch);
                    yylval.pitch->set_spot (Input (source_file_l (), 


-- 
Jan Nieuwenhuizen <[EMAIL PROTECTED]> | GNU LilyPond - The music typesetter
http://www.xs4all.nl/~jantien       | http://www.lilypond.org

Reply via email to