]> git.donarmstrong.com Git - lilypond.git/commitdiff
(running-from-gui?): Always write to .log file on
authorJan Nieuwenhuizen <janneke@gnu.org>
Wed, 20 Jul 2005 21:31:27 +0000 (21:31 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Wed, 20 Jul 2005 21:31:27 +0000 (21:31 +0000)
dos-based windows.

ChangeLog
scm/lily.scm

index e7bddc42a6fa624e5d7783f9cd733614266056f0..c09fb9dae8a4b2a2fb9529044fbc96847c5a87de 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-07-20  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * scm/lily.scm (running-from-gui?): Always write to .log file on
+       dos-based windows.
+
 2005-07-19  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * lily/main.cc (main): Remove invalid handle kludge.
index faa9e62d3a8502bb585e928e05310d9e41372928..788b82bdfe6086e6c71427f20b02f0d021b4067c 100644 (file)
@@ -388,7 +388,8 @@ The syntax is the same as `define*-public'."
     ;; If no TTY and not using safe, assume running from GUI.
     (cond
      ((eq? PLATFORM 'windows)
-      (if DOS #f
+      ;; Always write to .log file.
+      (if DOS #t
       ;; This only works for i586-mingw32msvc-gcc -mwindows
       (not (string-match "standard input"
                         (format #f "~S" (current-input-port))))))