]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/parse-scm.hh
*** empty log message ***
[lilypond.git] / lily / include / parse-scm.hh
index 9a33271b4ec39db75fe7208fb48021b26e7db280..28223cac7ecd66413304b74b7af8a5f2b1005c37 100644 (file)
@@ -1,20 +1,29 @@
+/*
+  lily-guile.hh encapsulate guile
 
-#ifndef PARSE_SCM
-#define PARSE_SCM
+  source file of the GNU LilyPond music typesetter
+
+  (c) 2004--2006 Han-Wen Nienhuys <hanwen@xs4all.nl>
+*/
+
+#ifndef PARSE_SCM_HH
+#define PARSE_SCM_HH
 
 #include "input.hh"
 #include "lily-guile.hh"
 
+extern bool parse_protect_global;
+
 struct Parse_start
 {
-  char conststr;
+  char const *str;
   int nchars;
-  Input start_location;
+  Input start_location_;
+  bool safe_;
 };
 
 SCM catch_protected_parse_body (void *);
-SCM protected_ly_parse_scm (Parse_start *);
-
-SCM ly_parse_scm (char const* s, int *, Input);
+SCM protected_ly_parse_scm (Parse_start *, bool);
+SCM ly_parse_scm (char const *, int *, Input, bool);
 
-#endif
+#endif /* PARSE_SCM_HH */