]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix for Guile 1.8.6
authorPatrick McCarty <pnorcks@gmail.com>
Wed, 24 Dec 2008 06:50:50 +0000 (22:50 -0800)
committerJohn Mandereau <john.mandereau@gmail.com>
Sat, 27 Dec 2008 23:50:29 +0000 (00:50 +0100)
* latest Guile forbids the call to scm_fill_input ()

Signed-off-by: Patrick McCarty <pnorcks@gmail.com>
lily/parse-scm.cc

index f55be9829d81635f017a5bddaefdc3aa1996ec16..409ba889450387ee7da28a806a055e14f30217f8 100644 (file)
@@ -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);