(frame-or-buffer-changed-p): Definition deleted.

(the end): Use mapc, to force loading of cl-extra.
This commit is contained in:
Richard M. Stallman 1997-01-05 04:44:30 +00:00
parent 96cdf226f1
commit be17d374c3

View file

@ -986,15 +986,6 @@ variable `msb-menu-cond'."
(cddr buffers-menu))
(or buffers-menu 'undefined)))))))
(when (and (boundp 'menu-bar-update-hook)
(not (fboundp 'frame-or-buffer-changed-p)))
(defvar msb--buffer-count 0)
(defun frame-or-buffer-changed-p ()
(let ((count (length (buffer-list))))
(when (/= count msb--buffer-count)
(setq msb--buffer-count count)
t))))
(unless (or (not (boundp 'menu-bar-update-hook))
(memq 'menu-bar-update-buffers menu-bar-update-hook))
(add-hook 'menu-bar-update-hook 'menu-bar-update-buffers))
@ -1004,4 +995,8 @@ variable `msb-menu-cond'."
(provide 'msb)
(eval-after-load 'msb (run-hooks 'msb-after-load-hooks))
;; Load the cl-extra library now, since we will certainly need it later.
(mapc 'ignore nil)
;;; msb.el ends here