1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-02 20:16:25 +00:00

(msb-menu-bar-update-buffers): Fixed frame menu to use

the frame name as the car of a menu entry, rather than the frame.
This commit is contained in:
Richard M. Stallman 2002-05-08 13:14:17 +00:00
parent 0d1c958a2f
commit 10df505135
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,12 @@
2002-05-08 Richard M. Stallman <rms@gnu.org>
* mail/smtpmail.el (netrc-machine, netrc-get): Add autoloads.
2002-05-08 Simon Marshall <simon@gnu.org>
* msb.el (msb-menu-bar-update-buffers): Fixed frame menu to use
the frame name as the car of a menu entry, rather than the frame.
2002-05-08 Juanma Barranquero <lektu@terra.es>
* rfn-eshadow.el (read-file-name-electric-shadow-mode): Fix typos

View File

@ -1114,9 +1114,8 @@ variable `msb-menu-cond'."
(mapcar
(lambda (frame)
(nconc
(list frame
(cdr (assq 'name
(frame-parameters frame)))
(list (frame-parameter frame 'name)
(frame-parameter frame 'name)
(cons nil nil))
'menu-bar-select-frame))
frames)))))