From 3468f4350a8fc68f0397c784ea140f91295db5c7 Mon Sep 17 00:00:00 2001 From: Chong Yidong Date: Sun, 27 Jun 2010 14:11:16 -0400 Subject: [PATCH] * startup.el (command-line): Recognize "0" X resource value. --- lisp/ChangeLog | 4 ++++ lisp/startup.el | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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) -- 2.39.2