From: Jan Nieuwenhuizen Date: Mon, 17 Sep 2001 15:04:09 +0000 (+0200) Subject: patch::: 1.5.10.jcn1 X-Git-Tag: release/1.5.11~3 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=86a0b4838aff3c379487682c37937cb3d9203fdc;p=lilypond.git patch::: 1.5.10.jcn1 1.5.10.jcn1 ========== * parser.yy: Guile > 1.4 compilation fix; scm_unprotect_object is deprecated. 1.5.10 ====== --- diff --git a/CHANGES b/CHANGES index 0f3adbfcb0..6e009fd549 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,11 @@ +1.5.10.jcn1 +========== + +* parser.yy: Guile > 1.4 compilation fix; scm_unprotect_object is deprecated. + +1.5.10 +====== + 1.5.9.hjj2 ========== * Emacs-mode: Keyboard shortcuts, separated identifiers from keywords diff --git a/VERSION b/VERSION index 29adfa8408..66c84c6b8f 100644 --- a/VERSION +++ b/VERSION @@ -2,7 +2,7 @@ PACKAGE_NAME=LilyPond MAJOR_VERSION=1 MINOR_VERSION=5 PATCH_LEVEL=10 -MY_PATCH_LEVEL= +MY_PATCH_LEVEL=jcn1 # use the above to send patches: MY_PATCH_LEVEL is always empty for a # released version. diff --git a/lily/parser.yy b/lily/parser.yy index c0a6061ddf..8d47fa28fd 100644 --- a/lily/parser.yy +++ b/lily/parser.yy @@ -1718,7 +1718,7 @@ bass_figure: Note_req * nr = new Note_req; $$ = nr->self_scm (); nr->set_mus_property ("pitch", p.smobbed_copy ()); - scm_unprotect_object ($$); + scm_gc_unprotect_object ($$); } | bass_figure bass_mod { if ($2) {