From b95d7795ed520038d0e583a8fe512bae3ef0d7c3 Mon Sep 17 00:00:00 2001
From: janneke <janneke>
Date: Sun, 19 Sep 2004 11:17:04 +0000
Subject: [PATCH] * input/mutopia/E.Satie/petite-ouverture-a-danser.ly: *
 input/mutopia/R.Schumann/romanze-op28-2.ly: *
 input/mutopia/F.Schubert/standchen.ly: Remove obsolete #'Slur.attachment
 setting.

* elisp/lilypond-mode.el (LilyPond-command-alist): Use -ftex,
friendlier for point and click.
---
 ChangeLog                                  | 10 ++++++++++
 elisp/lilypond-mode.el                     |  4 ++--
 input/mutopia/F.Schubert/standchen.ly      |  2 --
 input/mutopia/R.Schumann/romanze-op28-2.ly |  1 -
 scm/lily.scm                               |  6 ++++--
 5 files changed, 16 insertions(+), 7 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index fa9f7b1180..25a71f7af4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2004-09-19  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+	* input/mutopia/E.Satie/petite-ouverture-a-danser.ly: 
+	* input/mutopia/R.Schumann/romanze-op28-2.ly:
+	* input/mutopia/F.Schubert/standchen.ly: Remove obsolete
+	#'Slur.attachment setting.
+
+	* elisp/lilypond-mode.el (LilyPond-command-alist): Use -ftex,
+	friendlier for point and click.
+
 2004-09-19  Han-Wen Nienhuys   <hanwen@xs4all.nl>
 
 	* ly/init.ly: reverse collected scores.
diff --git a/elisp/lilypond-mode.el b/elisp/lilypond-mode.el
index 1c272c171c..c6c174bde6 100644
--- a/elisp/lilypond-mode.el
+++ b/elisp/lilypond-mode.el
@@ -19,7 +19,7 @@
 (require 'easymenu)
 (require 'compile)
 
-(defconst LilyPond-version "1.9.9"
+(defconst LilyPond-version "2.3.17"
   "`LilyPond-mode' version number.")
 
 (defconst LilyPond-help-address "bug-lilypond@gnu.org"
@@ -411,7 +411,7 @@ in LilyPond-include-path."
   ;; Should expand this to include possible keyboard shortcuts which
   ;; could then be mapped to define-key and menu.
   `(
-    ("LilyPond" . ("lilypond %s" "%s" "%l" "ViewPS"))
+    ("LilyPond" . ("lilypond -ftex %s" "%s" "%l" "View"))
     ("TeX" . ("tex '\\nonstopmode\\input %t'" "%t" "%d" "View"))
 
     ("2Dvi" . ("lilypond -f tex %s" "%s" "%d" "LaTeX"))
diff --git a/input/mutopia/F.Schubert/standchen.ly b/input/mutopia/F.Schubert/standchen.ly
index 4da834f27b..0bf0cfc019 100644
--- a/input/mutopia/F.Schubert/standchen.ly
+++ b/input/mutopia/F.Schubert/standchen.ly
@@ -193,14 +193,12 @@ trebleVerseOne = \relative c{
 	r8\pp <es as c> <as c es> <es as c> <as c es> <es as c> |
 	%20
 	r8 <es g bes> <g bes es> <es g bes> <g bes es> <es g bes> |
-	\override Slur   #'attachment = #'(stem . stem)
 	\grace {
   \override Stem   #'stroke-style = #"grace"
     as'32[( bes ] 
   \revert Stem #'stroke-style }
 
 	\times 2/3 {  as8[)( g as] } c4.->  as8) |
-	\revert Slur #'attachment
 	g2. |
 	r8 <f, g> <g b> <f g> <g b> <f g> |
 	r8 <e g> <g c> <e g> <g c> <e g> |
diff --git a/input/mutopia/R.Schumann/romanze-op28-2.ly b/input/mutopia/R.Schumann/romanze-op28-2.ly
index bb9890e72c..82707c02ff 100644
--- a/input/mutopia/R.Schumann/romanze-op28-2.ly
+++ b/input/mutopia/R.Schumann/romanze-op28-2.ly
@@ -38,7 +38,6 @@ global =  { \key fis \major \time 6/8
 righta =  \transpose c cis' {
  % \stemUp \slurUp \tieUp
  \stemUp
- \override Slur   #'attachment = #'(stem . stem)
  \repeat volta 2 {
   \override TextScript   #'extra-offset = #'(-8.0 . 2.5)
   \m  a,16[^\p( \u c^\markup {
diff --git a/scm/lily.scm b/scm/lily.scm
index 84da44a6a7..40d8a93b15 100644
--- a/scm/lily.scm
+++ b/scm/lily.scm
@@ -64,8 +64,10 @@
 (define ifdef "First run this through cpp.")
 (define ifndef "First run this through cpp.")
 
-;; gettext wrapper
-(define-public _ ly:gettext)
+;; gettext wrapper for guile < 1.7.2
+(if (defined? 'gettext)
+    (define-public _ gettext)
+    (define-public _ ly:gettext))
 
 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
 
-- 
2.39.5