]> git.eshelyaron.com Git - emacs.git/commitdiff
(command-line): If frame was created with a non-zero
authorGerd Moellmann <gerd@gnu.org>
Thu, 21 Sep 2000 18:38:53 +0000 (18:38 +0000)
committerGerd Moellmann <gerd@gnu.org>
Thu, 21 Sep 2000 18:38:53 +0000 (18:38 +0000)
tool-bar-lines parameter, switch tool-bar-mode on.

lisp/startup.el

index c1344f6f7b954421ccdd94abebd2b78cf9eddb6c..3353330a1989645780c563bbbbe5133fd691741a 100644 (file)
@@ -652,6 +652,12 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'."
               (> (cdr (assq 'menu-bar-lines (frame-parameters))) 0)))
       (menu-bar-mode t))
 
+  ;; If frame was created with a tool bar, switch tool-bar-mode on.
+  (when (and (not noninteractive)
+            (memq window-system '(x w32))
+            (> (frame-parameter nil 'tool-bar-lines) 0))
+    (tool-bar-mode t))
+
   ;; Can't do this init in defcustom because window-system isn't set.
   (when (and (not noninteractive)
             (not (eq system-type 'ms-dos))