aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2002-05-08 13:14:17 +0000
committerRichard M. Stallman2002-05-08 13:14:17 +0000
commit10df505135db2a7accc80b5d2d59036bfc503d2a (patch)
tree909e02dbee06738d50c10e05118b500b75eb2491
parent0d1c958a2f2c4986c04680722ac923e70ac0ff9a (diff)
downloademacs-10df505135db2a7accc80b5d2d59036bfc503d2a.tar.gz
emacs-10df505135db2a7accc80b5d2d59036bfc503d2a.zip
(msb-menu-bar-update-buffers): Fixed frame menu to use
the frame name as the car of a menu entry, rather than the frame.
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/msb.el5
2 files changed, 11 insertions, 3 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 0fd79e4ceba..3189447fee8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
12002-05-08 Richard M. Stallman <rms@gnu.org>
2
3 * mail/smtpmail.el (netrc-machine, netrc-get): Add autoloads.
4
52002-05-08 Simon Marshall <simon@gnu.org>
6
7 * msb.el (msb-menu-bar-update-buffers): Fixed frame menu to use
8 the frame name as the car of a menu entry, rather than the frame.
9
12002-05-08 Juanma Barranquero <lektu@terra.es> 102002-05-08 Juanma Barranquero <lektu@terra.es>
2 11
3 * rfn-eshadow.el (read-file-name-electric-shadow-mode): Fix typos 12 * rfn-eshadow.el (read-file-name-electric-shadow-mode): Fix typos
diff --git a/lisp/msb.el b/lisp/msb.el
index 907bbbfa07f..2e19bb9d6d1 100644
--- a/lisp/msb.el
+++ b/lisp/msb.el
@@ -1114,9 +1114,8 @@ variable `msb-menu-cond'."
1114 (mapcar 1114 (mapcar
1115 (lambda (frame) 1115 (lambda (frame)
1116 (nconc 1116 (nconc
1117 (list frame 1117 (list (frame-parameter frame 'name)
1118 (cdr (assq 'name 1118 (frame-parameter frame 'name)
1119 (frame-parameters frame)))
1120 (cons nil nil)) 1119 (cons nil nil))
1121 'menu-bar-select-frame)) 1120 'menu-bar-select-frame))
1122 frames))))) 1121 frames)))))