emacs-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-commit] emacs/lisp/mh-e ChangeLog mh-tool-bar.el


From: Mark D. Baushke
Subject: [Emacs-commit] emacs/lisp/mh-e ChangeLog mh-tool-bar.el
Date: Fri, 03 Feb 2006 19:32:06 +0000

CVSROOT:        /cvsroot/emacs
Module name:    emacs
Branch:         
Changes by:     Mark D. Baushke <address@hidden>        06/02/03 19:32:06

Modified files:
        lisp/mh-e      : ChangeLog mh-tool-bar.el 

Log message:
        * mh-tool-bar.el: Add conditional require of 'tool-bar or 'toolbar
        for gnu-emacs or xemacs to avoid void-variable tool-bar-map lisp
        errors if describe-bindings is called before tool-bar-mode is used.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/lisp/mh-e/ChangeLog.diff?tr1=1.136&tr2=1.137&r1=text&r2=text
http://cvs.savannah.gnu.org/viewcvs/emacs/emacs/lisp/mh-e/mh-tool-bar.el.diff?tr1=1.2&tr2=1.3&r1=text&r2=text

Patches:
Index: emacs/lisp/mh-e/ChangeLog
diff -u emacs/lisp/mh-e/ChangeLog:1.136 emacs/lisp/mh-e/ChangeLog:1.137
--- emacs/lisp/mh-e/ChangeLog:1.136     Fri Feb  3 17:55:05 2006
+++ emacs/lisp/mh-e/ChangeLog   Fri Feb  3 19:32:06 2006
@@ -1,3 +1,9 @@
+2006-02-03  Mark D. Baushke  <address@hidden>
+
+       * mh-tool-bar.el: Add conditional require of 'tool-bar or 'toolbar
+       for gnu-emacs or xemacs to avoid void-variable tool-bar-map lisp
+       errors if describe-bindings is called before tool-bar-mode is used.
+
 2006-02-03  Peter S Galbraith  <address@hidden>
 
        * mh-compat.el (mh-url-unreserved-chars): Fix typo from
Index: emacs/lisp/mh-e/mh-tool-bar.el
diff -u emacs/lisp/mh-e/mh-tool-bar.el:1.2 emacs/lisp/mh-e/mh-tool-bar.el:1.3
--- emacs/lisp/mh-e/mh-tool-bar.el:1.2  Mon Jan 30 00:29:30 2006
+++ emacs/lisp/mh-e/mh-tool-bar.el      Fri Feb  3 19:32:06 2006
@@ -31,6 +31,10 @@
 ;;; Code:
 
 (require 'mh-e)
+(mh-do-in-gnu-emacs
+  (require 'tool-bar))
+(mh-do-in-xemacs
+  (require 'toolbar))
 
 ;;; Tool Bar Commands
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]