]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/lily-parser-scheme.cc
* lily/slur-scoring.cc (get_bound_info): robustness: substitute
[lilypond.git] / lily / lily-parser-scheme.cc
index 4a46421089164013065170f7fceca1a84678b787..d77dcb3bc35edeeb8bf7dbc693cda802d674ed10 100644 (file)
@@ -19,6 +19,7 @@
 #include "output-def.hh"
 #include "book.hh"
 #include "paper-book.hh"
+#include "file-name-map.hh"
 
 /* Do not append `!' suffix, since 1st argument is not modified. */
 LY_DEFINE (ly_set_point_and_click, "ly:set-point-and-click",
@@ -26,7 +27,7 @@ LY_DEFINE (ly_set_point_and_click, "ly:set-point-and-click",
           "Deprecated.")
 {
   (void) what;
-  warning ("ly:set-point-and-click called");
+  warning (_f ("deprecated function called: %s", "ly:set-point-and-click"));
   return SCM_UNSPECIFIED;
 }
 
@@ -82,7 +83,8 @@ LY_DEFINE (ly_parse_file, "ly:parse-file",
       Sources sources;
       sources.set_path (&global_path);
 
-      progress_indication (_f ("Processing `%s'", file_name.to_str0 ()));
+      String mapped_fn = map_file_name (file_name);
+      message (_f ("Processing `%s'", mapped_fn.to_str0 ()));
       progress_indication ("\n");
 
       Lily_parser *parser = new Lily_parser (&sources);