aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-01-26 23:48:23 -0800
committerGlenn Morris2011-01-26 23:48:23 -0800
commit220c2a148456b2e7f7a900f76530a3ef742e426e (patch)
treee02819dc5d49f4c018228566e3194d72cb499ddc
parentaf7c5700cad96fd6f11d1d79c59ed65793813f50 (diff)
downloademacs-220c2a148456b2e7f7a900f76530a3ef742e426e.tar.gz
emacs-220c2a148456b2e7f7a900f76530a3ef742e426e.zip
msb.el fix for bug #7902.
* lisp/msb.el (msb-menu-bar-update-buffers): Update for changed argument handling of menu-bar-select-frame.
-rw-r--r--lisp/ChangeLog7
-rw-r--r--lisp/msb.el3
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 41db2b5ea79..aa5158fbda5 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,9 +1,14 @@
12011-01-27 Glenn Morris <rgm@gnu.org>
2
3 * msb.el (msb-menu-bar-update-buffers): Update for changed
4 argument handling of menu-bar-select-frame. (Bug#7902)
5
12011-01-27 Chong Yidong <cyd@stupidchicken.com> 62011-01-27 Chong Yidong <cyd@stupidchicken.com>
2 7
3 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Set a limit 8 * progmodes/cc-engine.el (c-forward-<>-arglist-recur): Set a limit
4 to the recursion depth (Bug#7722). 9 to the recursion depth (Bug#7722).
5 10
62011-01-26 Roy Liu <carsomyr@gmail.com> (tiny change) 112011-01-26 Roy Liu <carsomyr@gmail.com> (tiny change)
7 12
8 * term/ns-win.el (ns-find-file): Expand ns-input-file with 13 * term/ns-win.el (ns-find-file): Expand ns-input-file with
9 command-line-default-directory (Bug#7872). 14 command-line-default-directory (Bug#7872).
diff --git a/lisp/msb.el b/lisp/msb.el
index 0e7a20fd33a..0517d8a5478 100644
--- a/lisp/msb.el
+++ b/lisp/msb.el
@@ -1112,7 +1112,8 @@ variable `msb-menu-cond'."
1112 (list (frame-parameter frame 'name) 1112 (list (frame-parameter frame 'name)
1113 (frame-parameter frame 'name) 1113 (frame-parameter frame 'name)
1114 (cons nil nil)) 1114 (cons nil nil))
1115 'menu-bar-select-frame)) 1115 `(lambda ()
1116 (interactive) (menu-bar-select-frame ,frame))))
1116 frames))))) 1117 frames)))))
1117 (setcdr global-buffers-menu-map 1118 (setcdr global-buffers-menu-map
1118 (if (and buffers-menu frames-menu) 1119 (if (and buffers-menu frames-menu)