From: Jan Nieuwenhuizen Date: Sun, 19 Sep 2004 11:17:04 +0000 (+0000) Subject: * input/mutopia/E.Satie/petite-ouverture-a-danser.ly: X-Git-Tag: release/2.3.18~4 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=51f45912e0b544a6528d014e7d2073295b9f496e;p=lilypond.git * 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. --- diff --git a/ChangeLog b/ChangeLog index fa9f7b1180..25a71f7af4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2004-09-19 Jan Nieuwenhuizen + + * 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 * 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 | %20 r8 | - \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 | r8 | 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)) ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;