CVSROOT: /cvsroot/auctex Module name: auctex Changes by: Ralf Angeli <angeli> 08/02/03 14:14:01
Index: tex-info.el =================================================================== RCS file: /cvsroot/auctex/auctex/tex-info.el,v retrieving revision 5.154 retrieving revision 5.155 diff -u -b -r5.154 -r5.155 --- tex-info.el 29 Dec 2006 13:40:00 -0000 5.154 +++ tex-info.el 3 Feb 2008 14:14:01 -0000 5.155 @@ -28,6 +28,11 @@ (require 'tex) (require 'texinfo) +;; Make sure the Texinfo mode of AUCTeX is still used after loading +;; texinfo.el. (This is only an issue on Emacs 21.) +(when (and (boundp 'TeX-modes) + (memq 'texinfo-mode TeX-modes)) + (defalias 'texinfo-mode 'TeX-texinfo-mode)) ;;; Environments: _______________________________________________ auctex-diffs mailing list [EMAIL PROTECTED] http://lists.gnu.org/mailman/listinfo/auctex-diffs
