From 961f0fc76e27d2a95b75574feba3a2172440410e Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 23:24:41 +0000 Subject: [PATCH] lilypond-1.3.72 --- lily/clef-engraver.cc | 1 + lily/lily-guile.cc | 8 ++++++++ 2 files changed, 9 insertions(+) diff --git a/lily/clef-engraver.cc b/lily/clef-engraver.cc index dd7385a988..b9813a1aa9 100644 --- a/lily/clef-engraver.cc +++ b/lily/clef-engraver.cc @@ -1,4 +1,5 @@ /* + clef-engraver.cc -- implement Clef_engraver source file of the GNU LilyPond music typesetter diff --git a/lily/lily-guile.cc b/lily/lily-guile.cc index f02685cf44..7877d3674f 100644 --- a/lily/lily-guile.cc +++ b/lily/lily-guile.cc @@ -387,12 +387,19 @@ wave_sweep_goodbye (void *dummy1, void *dummy2, void *dummy3) } #endif +SCM +undefd () +{ + return SCM_UNDEFINED; +} + static void init_functions () { scm_make_gsubr ("ly-warn", 1, 0, 0, (SCM(*)(...))ly_warning); scm_make_gsubr ("ly-gulp-file", 1,0, 0, (SCM(*)(...))ly_gulp_file); scm_make_gsubr ("dir?", 1,0, 0, (SCM(*)(...))ly_isdir_p); + scm_make_gsubr ("undefd", 0,0, 0, (SCM(*)(...))undefd); scm_make_gsubr ("ly-number->string", 1, 0,0, (SCM(*)(...)) ly_number2string); @@ -416,3 +423,4 @@ ly_deep_copy (SCM l) return l; } + -- 2.39.5