X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fparse-scm.cc;h=c8d8d36bfab2f2ca2a393d9c17c6e00c7dd42917;hb=e1679a36d8dcf7535bd5e91b9fae3609bf37a0b6;hp=1201f5747d244f2277a866d8f80eb2f433a6b4c3;hpb=545092a25d8ca41dc90b87482474b3719f7130a9;p=lilypond.git diff --git a/lily/parse-scm.cc b/lily/parse-scm.cc index 1201f5747d..c8d8d36bfa 100644 --- a/lily/parse-scm.cc +++ b/lily/parse-scm.cc @@ -3,7 +3,7 @@ source file of the GNU LilyPond music typesetter - (c) 2004--2005 Han-Wen Nienhuys + (c) 2004--2006 Han-Wen Nienhuys */ #include "parse-scm.hh" @@ -11,6 +11,7 @@ #include using namespace std; +#include "international.hh" #include "main.hh" #include "paper-book.hh" #include "source-file.hh" @@ -25,7 +26,7 @@ internal_ly_parse_scm (Parse_start *ps) Source_file *sf = ps->start_location_.get_source_file (); SCM port = sf->get_port (); - int off = ps->start_location_.start () - sf->to_str0 (); + int off = ps->start_location_.start () - sf->c_str (); scm_seek (port, scm_long2num (off), scm_long2num (SEEK_SET)); SCM from = scm_ftell (port); @@ -93,27 +94,20 @@ parse_handler (void *data, SCM tag, SCM args) return SCM_UNDEFINED; } -/* - Do some magical incantations: if not, lily will exit on the first - GUILE error, leaving no location trace. -*/ - -#if GUILE_MINOR_VERSION < 7 -#define READ_ERROR "misc-error" -#else -#define READ_ERROR "read-error" -#endif - SCM protected_ly_parse_scm (Parse_start *ps) { - return scm_internal_catch (ly_symbol2scm (READ_ERROR), + /* + Catch #t : catch all Scheme level errors. + */ + return scm_internal_catch (SCM_BOOL_T, &catch_protected_parse_body, (void *) ps, &parse_handler, (void *) ps); } bool parse_protect_global = true; +bool parsed_objects_should_be_dead = false; /* Try parsing. Upon failure return SCM_UNDEFINED. FIXME: shouldn't we return SCM_UNSCPECIFIED -- jcn */