emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r102619: Fix bug #1077 with popping n


From: Eli Zaretskii
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r102619: Fix bug #1077 with popping new frames from a minibuffer-only frame.
Date: Thu, 09 Dec 2010 21:07:53 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 102619
committer: Eli Zaretskii <address@hidden>
branch nick: trunk
timestamp: Thu 2010-12-09 21:07:53 +0200
message:
  Fix bug #1077 with popping new frames from a minibuffer-only frame.
  
   menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p):
   New functions.
   (menu-bar-showhide-menu) <menu-bar-mode, showhide-tool-bar>: Use
   them instead of `nil' and `>', respectively.
   (menu-bar-showhide-tool-bar-menu): Use menu-bar-frame-for-menubar
   instead of `nil'.
   (toggle-menu-bar-mode-from-frame): Use menu-bar-frame-for-menubar
   and menu-bar-positive-p instead of `nil' and `>', respectively.
modified:
  lisp/ChangeLog
  lisp/menu-bar.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-12-09 10:55:03 +0000
+++ b/lisp/ChangeLog    2010-12-09 19:07:53 +0000
@@ -1,3 +1,15 @@
+2010-12-09  Eli Zaretskii  <address@hidden>
+
+       * menu-bar.el (menu-bar-frame-for-menubar, menu-bar-positive-p):
+       New functions.
+       (menu-bar-showhide-menu) <menu-bar-mode, showhide-tool-bar>: Use
+       them instead of `nil' and `>', respectively.
+       (menu-bar-showhide-tool-bar-menu): Use menu-bar-frame-for-menubar
+       instead of `nil'.
+       (toggle-menu-bar-mode-from-frame): Use menu-bar-frame-for-menubar
+       and menu-bar-positive-p instead of `nil' and `>', respectively.
+       (Bug#1077)
+
 2010-12-09  Vinicius Jose Latorre  <address@hidden>
 
        * whitespace.el (whitespace-newline-mode): Code fix.

=== modified file 'lisp/menu-bar.el'
--- a/lisp/menu-bar.el  2010-10-31 14:40:01 +0000
+++ b/lisp/menu-bar.el  2010-12-09 19:07:53 +0000
@@ -1020,10 +1020,24 @@
              :visible (and (display-graphic-p) (fboundp 'x-show-tip))
              :button (:toggle . tooltip-mode)))
 
+(defun menu-bar-frame-for-menubar ()
+  "Return the frame suitable for updating the menu bar."
+  (or (and (framep menu-updating-frame)
+          menu-updating-frame)
+      (selected-frame)))
+
+(defun menu-bar-positive-p (val)
+  "Return non-nil iff VAL is a positive number."
+  (and (numberp val)
+       (> val 0)))
+
 (define-key menu-bar-showhide-menu [menu-bar-mode]
   `(menu-item ,(purecopy "Menu-bar") toggle-menu-bar-mode-from-frame
              :help ,(purecopy "Turn menu-bar on/off")
-             :button (:toggle . (> (frame-parameter nil 'menu-bar-lines) 0))))
+             :button
+             (:toggle . (menu-bar-positive-p
+                         (frame-parameter (menu-bar-frame-for-menubar)
+                                          'menu-bar-lines)))))
 
 (defun menu-bar-set-tool-bar-position (position)
   (customize-set-variable 'tool-bar-mode t)
@@ -1060,7 +1074,9 @@
                    :visible (display-graphic-p)
                    :button
                    (:radio . (and tool-bar-mode
-                                  (eq (frame-parameter nil 'tool-bar-position)
+                                  (eq (frame-parameter
+                                       (menu-bar-frame-for-menubar)
+                                       'tool-bar-position)
                                       'left)))))
 
       (define-key menu-bar-showhide-tool-bar-menu [showhide-tool-bar-right]
@@ -1070,7 +1086,9 @@
                    :visible (display-graphic-p)
                    :button
                    (:radio . (and tool-bar-mode
-                                  (eq (frame-parameter nil 'tool-bar-position)
+                                  (eq (frame-parameter
+                                       (menu-bar-frame-for-menubar)
+                                       'tool-bar-position)
                                       'right)))))
 
       (define-key menu-bar-showhide-tool-bar-menu [showhide-tool-bar-bottom]
@@ -1080,7 +1098,9 @@
                    :visible (display-graphic-p)
                    :button
                    (:radio . (and tool-bar-mode
-                                  (eq (frame-parameter nil 'tool-bar-position)
+                                  (eq (frame-parameter
+                                       (menu-bar-frame-for-menubar)
+                                       'tool-bar-position)
                                       'bottom)))))
 
       (define-key menu-bar-showhide-tool-bar-menu [showhide-tool-bar-top]
@@ -1090,7 +1110,9 @@
                    :visible (display-graphic-p)
                    :button
                    (:radio . (and tool-bar-mode
-                                  (eq (frame-parameter nil 'tool-bar-position)
+                                  (eq (frame-parameter
+                                       (menu-bar-frame-for-menubar)
+                                       'tool-bar-position)
                                       'top)))))
 
       (define-key menu-bar-showhide-tool-bar-menu [showhide-tool-bar-none]
@@ -1110,8 +1132,10 @@
     `(menu-item ,(purecopy "Tool-bar") toggle-tool-bar-mode-from-frame
                :help ,(purecopy "Turn tool-bar on/off")
                :visible (display-graphic-p)
-               :button (:toggle . (> (frame-parameter nil 'tool-bar-lines) 
0))))
-)
+               :button
+               (:toggle . (menu-bar-positive-p
+                           (frame-parameter (menu-bar-frame-for-menubar)
+                                            'tool-bar-lines))))))
 
 (define-key menu-bar-options-menu [showhide]
   `(menu-item ,(purecopy "Show/Hide") ,menu-bar-showhide-menu))
@@ -2109,7 +2133,10 @@
 See `menu-bar-mode' for more information."
   (interactive (list (or current-prefix-arg 'toggle)))
   (if (eq arg 'toggle)
-      (menu-bar-mode (if (> (frame-parameter nil 'menu-bar-lines) 0) 0 1))
+      (menu-bar-mode
+       (if (menu-bar-positive-p
+           (frame-parameter (menu-bar-frame-for-menubar) 'menu-bar-lines))
+           0 1))
     (menu-bar-mode arg)))
 
 (declare-function x-menu-bar-open "term/x-win" (&optional frame))


reply via email to

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