]> git.eshelyaron.com Git - emacs.git/commitdiff
* startup.el (command-line): Recognize "0" X resource value.
authorChong Yidong <cyd@stupidchicken.com>
Sun, 27 Jun 2010 18:11:16 +0000 (14:11 -0400)
committerChong Yidong <cyd@stupidchicken.com>
Sun, 27 Jun 2010 18:11:16 +0000 (14:11 -0400)
lisp/ChangeLog
lisp/startup.el

index d4862e17a73938c668c380650617df1b80ee0b48..7c12b3f5ec2c388fb15e8763040a225119678475 100644 (file)
@@ -1,3 +1,7 @@
+2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
+
+       * startup.el (command-line): Recognize "0" X resource value.
+
 2010-06-27  Chong Yidong  <cyd@stupidchicken.com>
 
        * startup.el (command-line): Use X resources to set the value of
index 67ebf47c5dd2715fee412e3c029e27c4aafd3649..e954409497aeb92594ab571ac1d1f4a81741293d 100644 (file)
@@ -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)