From: Patrick McCarty Date: Wed, 24 Dec 2008 06:50:50 +0000 (-0800) Subject: Fix for Guile 1.8.6 X-Git-Tag: release/2.12.1-1~26 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=7bc7dbd80e0e7b3e16e58f56689d32e06d4af921;p=lilypond.git Fix for Guile 1.8.6 * latest Guile forbids the call to scm_fill_input () Signed-off-by: Patrick McCarty --- diff --git a/lily/parse-scm.cc b/lily/parse-scm.cc index f55be9829d..409ba88945 100644 --- a/lily/parse-scm.cc +++ b/lily/parse-scm.cc @@ -38,9 +38,6 @@ internal_ly_parse_scm (Parse_start *ps) SCM answer = SCM_UNSPECIFIED; SCM form = scm_read (port); - /* Reset read_buf for scm_ftell. - Shouldn't scm_read () do this for us? */ - scm_fill_input (port); SCM to = scm_ftell (port); ps->nchars = scm_to_int (to) - scm_to_int (from);