diff lisp/mh-e/mh-show.el @ 95843:c0e61b43cdb0

Check tool-bar-map is bound.
author Glenn Morris <rgm@gnu.org>
date Thu, 12 Jun 2008 03:57:56 +0000
parents 90c9ebd43589
children 186e66f93b45
line wrap: on
line diff
--- a/lisp/mh-e/mh-show.el	Thu Jun 12 03:57:36 2008 +0000
+++ b/lisp/mh-e/mh-show.el	Thu Jun 12 03:57:56 2008 +0000
@@ -1,7 +1,7 @@
 ;;; mh-show.el --- MH-Show mode
 
-;; Copyright (C) 1993, 1995, 1997,
-;;  2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
+;; Copyright (C) 1993, 1995, 1997, 2000, 2001, 2002, 2003, 2004, 2005,
+;;   2006, 2007, 2008  Free Software Foundation, Inc.
 
 ;; Author: Bill Wohler <wohler@newt.com>
 ;; Maintainer: Bill Wohler <wohler@newt.com>
@@ -847,7 +847,8 @@
 
 \\{mh-show-mode-map}"
   (mh-do-in-gnu-emacs
-    (set (make-local-variable 'tool-bar-map) mh-show-tool-bar-map))
+   (if (boundp 'tool-bar-map)
+       (set (make-local-variable 'tool-bar-map) mh-show-tool-bar-map)))
   (mh-do-in-xemacs
     (mh-tool-bar-init :show))
   (set (make-local-variable 'mail-header-separator) mh-mail-header-separator)