]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove gettext wrappers for ancient Guile versions.
authorPatrick McCarty <pnorcks@gmail.com>
Sun, 7 Mar 2010 01:28:59 +0000 (17:28 -0800)
committerPatrick McCarty <pnorcks@gmail.com>
Thu, 11 Mar 2010 23:24:56 +0000 (15:24 -0800)
scm/lily.scm
scm/ps-to-png.scm
scripts/lilypond-invoke-editor.scm

index bb7ce8f608475cae15d92197f629d1be4d49fc13..a17d6f03b215e34951d55847562f6616ad8c3ae5 100644 (file)
@@ -254,10 +254,7 @@ messages into errors.")
 (if (memq (ly:get-option 'backend) music-string-to-path-backends)
     (ly:set-option 'music-strings-to-paths #t))
 
-;; gettext wrapper for guile < 1.7.2
-(if (defined? 'gettext)
-    (define-public _ gettext)
-    (define-public _ ly:gettext))
+(define-public _ gettext)
 
 (define-public (ly:load x)
   (let* ((file-name (%search-load-path x)))
index 76773ab9ce8e071d6064b2342c9e691896536433..f25f8cb7ff82338a4c8716a226c81cb40d18a904 100644 (file)
  (lily)
  )
 
-;; gettext wrapper for guile < 1.7.2
-(if (defined? 'gettext)
-    (define-public _ gettext)
-    (define-public (_ x) x))
+(define-public _ gettext)
 
 (define PLATFORM
   (string->symbol
index f8225db1422d7d1a0084e1ec4367c5793a85aac6..01e0408fd3e65125a20f519a0a1b804f04ef8631 100644 (file)
        (format #f "~a/share/lilypond/~a"
                prefix TOPLEVEL-VERSION))))
 
-
-
-;; gettext wrapper for guile < 1.7.2
-(if (defined? 'gettext)
-    (define-public _ gettext)
-    (define-public (_ x) x))
+(define-public _ gettext)
 
 (define (show-version port)
   (format port "~a (GNU LilyPond) ~a\n" PROGRAM-NAME TOPLEVEL-VERSION))