]> git.eshelyaron.com Git - emacs.git/commitdiff
(fancy-splash-tail): Use a different foreground
authorGerd Moellmann <gerd@gnu.org>
Thu, 21 Sep 2000 09:07:11 +0000 (09:07 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 21 Sep 2000 09:07:11 +0000 (09:07 +0000)
color on a dark frame background.

lisp/ChangeLog
lisp/startup.el

index 2a744ff26cafd5e38ffb5974fb5bf52206650663..e71fe85bfadb14dfeaa7a3894b162396702ce670 100644 (file)
@@ -1,3 +1,8 @@
+2000-09-21  Gerd Moellmann  <gerd@gnu.org>
+
+       * startup.el (fancy-splash-tail): Use a different foreground
+       color on a dark frame background.
+
 2000-09-21  Miles Bader  <miles@lsi.nec.co.jp>
 
        * info.el: Use the correct capitalization when making Info-mode
index d57e1e72bea40127d27f3b3e8cfde6959e4a6bf6..c1344f6f7b954421ccdd94abebd2b78cf9eddb6c 100644 (file)
@@ -930,13 +930,14 @@ where FACE is a valid face specification, as it can be used with
 
 (defun fancy-splash-tail ()
   "Insert the tail part of the splash screen into the current buffer."
-  (fancy-splash-insert
-   :face '(variable-pitch :foreground "darkblue")
-   "\nThis is "
-   (emacs-version)
-   "\n"
-   :face '(variable-pitch :height 0.5)
-   "Copyright (C) 2000 Free Software Foundation, Inc."))
+  (let ((fg (if (eq (frame-parameter nil 'background-mode) 'dark)
+               "cyan" "darkblue")))
+    (fancy-splash-insert :face `(variable-pitch :foreground ,fg)
+                        "\nThis is "
+                        (emacs-version)
+                        "\n"
+                        :face '(variable-pitch :height 0.5)
+                        "Copyright (C) 2000 Free Software Foundation, Inc.")))
 
 
 (defun fancy-splash-screens ()