> > --- toolbar-x.el 25 May 2006 07:50:57 -0000 1.12 > > +++ toolbar-x.el 13 Sep 2006 20:15:00 -0000 1.13 > > @@ -1322,7 +1322,8 @@ > > toolbarx-internal-button-switches)) > > (used-keys (list :used-symbols nil)) > > (tool-bar-map-temp)) > > - (let ((tool-bar-map (make-sparse-keymap))) > > + (let (tool-bar-map) > > + (set (make-local-variable 'tool-bar-map) (make-sparse-keymap)) > > Eek. That can't be right. The previous version did not modify any > global value of tool-bar-map, but made a local let-binding.
I don't know if its fixed in CVS or not. I must admit I've lost the plot with tex-mode in Emacs and tex-mode in AUCTeX -- it would be be nice if AUCTeX were part of Emacs but you probably don't want to tied to a 5+ year release cycle, then there's XEmacs too... -- anyway there might be something odd about my setup. In my .emacs I have: (autoload 'TeX-load-hack "/usr/share/emacs/site-lisp/tex-site") (TeX-load-hack) It might help to look at how gud-tool-bar-map is defined gud.el in Emacs 22. This is used by multiple buffers too. -- Nick http://www.inet.net.nz/~nickrob _______________________________________________ bug-auctex mailing list [email protected] http://lists.gnu.org/mailman/listinfo/bug-auctex
