From: Chong Yidong Date: Sun, 27 Jun 2010 18:11:16 +0000 (-0400) Subject: * startup.el (command-line): Recognize "0" X resource value. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~51^2~108 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3468f4350a8fc68f0397c784ea140f91295db5c7;p=emacs.git * startup.el (command-line): Recognize "0" X resource value. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d4862e17a73..7c12b3f5ec2 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2010-06-27 Chong Yidong + + * startup.el (command-line): Recognize "0" X resource value. + 2010-06-27 Chong Yidong * startup.el (command-line): Use X resources to set the value of diff --git a/lisp/startup.el b/lisp/startup.el index 67ebf47c5dd..e954409497a 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -889,7 +889,7 @@ opening the first frame (e.g. open a connection to an X server).") no-blinking-cursor t)) ;; Check X resources if available. ((memq initial-window-system '(x w32 ns)) - (let ((no-vals '("no" "off" "false"))) + (let ((no-vals '("no" "off" "false" "0"))) (if (member (x-get-resource "menuBar" "MenuBar") no-vals) (setq menu-bar-mode nil)) (if (member (x-get-resource "toolBar" "ToolBar") no-vals)