# HG changeset patch # User Chong Yidong # Date 1277662276 14400 # Node ID 5c9de51f68b5a3da4ad045b73b474c562258de32 # Parent 2f0720afc474c2992631f412314b8ebec1e38e49 * startup.el (command-line): Recognize "0" X resource value. diff -r 2f0720afc474 -r 5c9de51f68b5 lisp/ChangeLog --- a/lisp/ChangeLog Sat Jun 26 20:30:52 2010 -0400 +++ b/lisp/ChangeLog Sun Jun 27 14:11:16 2010 -0400 @@ -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 -r 2f0720afc474 -r 5c9de51f68b5 lisp/startup.el --- a/lisp/startup.el Sat Jun 26 20:30:52 2010 -0400 +++ b/lisp/startup.el Sun Jun 27 14:11:16 2010 -0400 @@ -889,7 +889,7 @@ 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)