emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r100651: * startup.el (command-line):


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100651: * startup.el (command-line): Recognize "0" X resource value.
Date: Sun, 27 Jun 2010 14:11:16 -0400
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100651
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Sun 2010-06-27 14:11:16 -0400
message:
  * startup.el (command-line): Recognize "0" X resource value.
modified:
  lisp/ChangeLog
  lisp/startup.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-06-27 00:30:52 +0000
+++ b/lisp/ChangeLog    2010-06-27 18:11:16 +0000
@@ -1,5 +1,9 @@
 2010-06-27  Chong Yidong  <address@hidden>
 
+       * startup.el (command-line): Recognize "0" X resource value.
+
+2010-06-27  Chong Yidong  <address@hidden>
+
        * startup.el (command-line): Use X resources to set the value of
        menu-bar-mode and tool-bar-mode, before calling frame-initialize.
 

=== modified file 'lisp/startup.el'
--- a/lisp/startup.el   2010-06-27 00:30:52 +0000
+++ b/lisp/startup.el   2010-06-27 18:11:16 +0000
@@ -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)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]