From 43658de50b6512d3ee641e31c7667720f129c0fe Mon Sep 17 00:00:00 2001
From: Han-Wen Nienhuys <hanwen@xs4all.nl>
Date: Thu, 1 Feb 2007 11:19:40 +0100
Subject: [PATCH] tweaks.

---
 GNUmakefile.in | 3 +++
 lily/slur.cc   | 5 +++--
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/GNUmakefile.in b/GNUmakefile.in
index 4eea5f1791..4bccec3f5f 100644
--- a/GNUmakefile.in
+++ b/GNUmakefile.in
@@ -229,6 +229,9 @@ test:
 
 
 test-baseline: test
+	if  test -d .git ; then \
+		@$(if $(shell git diff), echo "commit before base lining" && false,true) ; \
+	fi
 	rm -rf input/regression/out-test-baseline
 	mv input/regression/out-test input/regression/out-test-baseline
 
diff --git a/lily/slur.cc b/lily/slur.cc
index 3d22a2cb19..d8c7652f5c 100644
--- a/lily/slur.cc
+++ b/lily/slur.cc
@@ -28,7 +28,7 @@
 #include "warn.hh"
 #include "slur-scoring.hh"
 #include "separation-item.hh"
-#include "script-interface.hh"
+#include "international.hh"
 
 
 
@@ -353,7 +353,8 @@ Slur::auxiliary_acknowledge_extra_object (Grob_info const &info,
 	}
     }
   else
-    e->warning ("Ignoring grob for slur. avoid-slur not set?");
+    e->warning (_f ("Ignoring grob for slur: %s. avoid-slur not set?",
+		    e->name().c_str ()));
 }
 
 MAKE_SCHEME_CALLBACK (Slur, cross_staff, 1)
-- 
2.39.5