From jamesjb at jamesjb.com Thu Apr 8 21:07:52 2004 From: jamesjb at jamesjb.com (James Bielman) Date: Thu, 08 Apr 2004 14:07:52 -0700 Subject: [gsharp-devel] patch: c clef glyph Message-ID: Hi, The following (trivial) patch fixes the incorrect display of the c/alto clef in gsharp: Index: score-pane.lisp =================================================================== RCS file: /project/gsharp/cvsroot/gsharp/score-pane.lisp,v retrieving revision 1.2 diff -u -r1.2 score-pane.lisp --- score-pane.lisp 25 Feb 2004 22:24:56 -0000 1.2 +++ score-pane.lisp 8 Apr 2004 20:54:55 -0000 @@ -249,7 +249,7 @@ (ecase name (:treble +glyph-g-clef+) (:bass +glyph-f-clef+) - (:c +glyph-f-clef+))) + (:c +glyph-c-clef+))) ;;;;;;;;;;;;;;;;;; rest Also, as a potentially useful data point, I was able to build and run gsharp using OpenMCL on Mac OS X (modulo exporting ENSURE-CLASS-USING-CLASS from CLIM-MOP). James From strandh at labri.fr Fri Apr 9 03:45:48 2004 From: strandh at labri.fr (Robert STRANDH) Date: Fri, 9 Apr 2004 05:45:48 +0200 Subject: [gsharp-devel] patch: c clef glyph In-Reply-To: References: Message-ID: <16502.7276.86449.954410@serveur5.labri.fr> Hello, James Bielman writes: > Hi, > > The following (trivial) patch fixes the incorrect display of the > c/alto clef in gsharp: > > Index: score-pane.lisp > =================================================================== > RCS file: /project/gsharp/cvsroot/gsharp/score-pane.lisp,v > retrieving revision 1.2 > diff -u -r1.2 score-pane.lisp > --- score-pane.lisp 25 Feb 2004 22:24:56 -0000 1.2 > +++ score-pane.lisp 8 Apr 2004 20:54:55 -0000 > @@ -249,7 +249,7 @@ > (ecase name > (:treble +glyph-g-clef+) > (:bass +glyph-f-clef+) > - (:c +glyph-f-clef+))) > + (:c +glyph-c-clef+))) > > ;;;;;;;;;;;;;;;;;; rest Thanks. I applied the patch. I guess nobody had tested that clef. > Also, as a potentially useful data point, I was able to build and run > gsharp using OpenMCL on Mac OS X (modulo exporting > ENSURE-CLASS-USING-CLASS from CLIM-MOP). That's good news. -- Robert Strandh --------------------------------------------------------------------- Greenspun's Tenth Rule of Programming: any sufficiently complicated C or Fortran program contains an ad hoc informally-specified bug-ridden slow implementation of half of Common Lisp. ---------------------------------------------------------------------