* mh-folder.el: Use boundp instead of fboundp when testing existence

of desktop-buffer-mode-handlers.
This commit is contained in:
Bill Wohler
2011-07-03 14:04:13 -07:00
parent 2e13213db2
commit 2a7a7c1499
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2011-07-03 Bill Wohler <wohler@newt.com>
* mh-folder.el: Use boundp instead of fboundp when testing
existence of desktop-buffer-mode-handlers.
2011-05-10 Jim Meyering <meyering@redhat.com>
Fix doubled-word typos.

View File

@@ -77,7 +77,7 @@ the MH mail system."
;;; Desktop Integration
;; desktop-buffer-mode-handlers appeared in Emacs 22.
(if (fboundp 'desktop-buffer-mode-handlers)
(if (boundp 'desktop-buffer-mode-handlers)
(add-to-list 'desktop-buffer-mode-handlers
'(mh-folder-mode . mh-restore-desktop-buffer)))