CVSROOT:        /cvsroot/lilypond
Module name:    lilypond
Branch:         
Changes by:     Jan Nieuwenhuizen <[EMAIL PROTECTED]>   05/05/13 16:13:34

Modified files:
        scm            : editor.scm 
        Documentation/user: preface.itely 
        .              : ChangeLog 

Log message:
        * Documentation/user/preface.itely (Preface): Run
        texinfo-all-menus-update.
        
        * scm/editor.scm (get-editor-command): Bugfix: allow full
        LYEDITOR setting, partial XEDITOR setting.  With typo fix.

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/scm/editor.scm.diff?tr1=1.2&tr2=1.3&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/Documentation/user/preface.itely.diff?tr1=1.52&tr2=1.53&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/lilypond/lilypond/ChangeLog.diff?tr1=1.3611&tr2=1.3612&r1=text&r2=text

Patches:
Index: lilypond/ChangeLog
diff -u lilypond/ChangeLog:1.3611 lilypond/ChangeLog:1.3612
--- lilypond/ChangeLog:1.3611   Fri May 13 16:05:31 2005
+++ lilypond/ChangeLog  Fri May 13 16:13:34 2005
@@ -1,7 +1,10 @@
 2005-05-13  Jan Nieuwenhuizen  <[EMAIL PROTECTED]>
 
+       * Documentation/user/preface.itely (Preface): Run
+       texinfo-all-menus-update.
+
        * scm/editor.scm (get-editor-command): Bugfix: allow full
-       LYEDITOR setting, partial XEDITOR setting.
+       LYEDITOR setting, partial XEDITOR setting.  With typo fix.
 
        * Documentation/pictures/lilypond-48.xpm: New file.
 
Index: lilypond/Documentation/user/preface.itely
diff -u lilypond/Documentation/user/preface.itely:1.52 
lilypond/Documentation/user/preface.itely:1.53
--- lilypond/Documentation/user/preface.itely:1.52      Fri May 13 12:50:12 2005
+++ lilypond/Documentation/user/preface.itely   Fri May 13 16:13:34 2005
@@ -49,7 +49,7 @@
 Utrecht/Eindhoven, The Netherlands, July 2002.
 
 @menu
-* Notes for version 2.4::       
+* Notes for version 2.6::       
 @end menu
 
 @node Notes for version 2.6
Index: lilypond/scm/editor.scm
diff -u lilypond/scm/editor.scm:1.2 lilypond/scm/editor.scm:1.3
--- lilypond/scm/editor.scm:1.2 Fri May 13 16:05:31 2005
+++ lilypond/scm/editor.scm     Fri May 13 16:13:34 2005
@@ -28,9 +28,9 @@
 (define-public (get-editor-command file-name line column)
   (define (get-command-template alist editor)
     (if (null? alist)
-       (if (string-match "%\\(file\\)s" file-name)
-           (file-name)
-           (string-append file-name " %(file)s"))
+       (if (string-match "%\\(file\\)s" editor)
+           (editor)
+           (string-append editor " %(file)s"))
        (if (string-match (caar alist) editor)
            (cdar alist)
            (get-command-template (cdr alist) editor))))


_______________________________________________
Lilypond-cvs mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-cvs

Reply via email to