aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2008-10-11 12:56:26 +0000
committerDan Nicolaescu2008-10-11 12:56:26 +0000
commit32f1cc7b8caa6599c2c068833801a30e4f55e87d (patch)
treef9407a9c5fbdac668d7a4541e407bda096cf48ba
parent1d3b373653ee8d8c7438b5995f8be2e40fa4cba6 (diff)
downloademacs-32f1cc7b8caa6599c2c068833801a30e4f55e87d.tar.gz
emacs-32f1cc7b8caa6599c2c068833801a30e4f55e87d.zip
(command-line): Revert 2008-09-26 change, not
necessary anymore.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/startup.el12
2 files changed, 10 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 36c296d8daa..d344508c421 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12008-10-11 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * startup.el (command-line): Revert 2008-09-26 change, not
4 necessary anymore.
5
12008-10-10 Andreas Schwab <schwab@suse.de> 62008-10-10 Andreas Schwab <schwab@suse.de>
2 7
3 * simple.el (minibuffer-complete-shell-command): Bind 8 * simple.el (minibuffer-complete-shell-command): Bind
diff --git a/lisp/startup.el b/lisp/startup.el
index 8c2fd91c3f7..09b21a325a9 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -889,13 +889,11 @@ opening the first frame (e.g. open a connection to an X server).")
889 '("off" "false"))))) 889 '("off" "false")))))
890 (setq no-blinking-cursor t)) 890 (setq no-blinking-cursor t))
891 891
892 ;; If we run as a daemon, or frame was created with a menu bar, set 892 ;; If frame was created with a menu bar, set menu-bar-mode on.
893 ;; menu-bar-mode on. 893 (unless (or noninteractive
894 (when (or (daemonp) 894 emacs-basic-display
895 (not (or noninteractive 895 (and (memq initial-window-system '(x w32))
896 emacs-basic-display 896 (<= (frame-parameter nil 'menu-bar-lines) 0)))
897 (and (memq initial-window-system '(x w32))
898 (<= (frame-parameter nil 'menu-bar-lines) 0)))))
899 (menu-bar-mode 1)) 897 (menu-bar-mode 1))
900 898
901 ;; Enable tool-bar-mode if necessary. Note that we might enable it 899 ;; Enable tool-bar-mode if necessary. Note that we might enable it