CVSROOT: /cvsroot/auctex Module name: auctex Changes by: Ralf Angeli <angeli> 10/12/05 20:49:23
Index: context.el =================================================================== RCS file: /cvsroot/auctex/auctex/context.el,v retrieving revision 1.75 retrieving revision 1.76 diff -u -b -r1.75 -r1.76 --- context.el 28 Sep 2010 19:22:34 -0000 1.75 +++ context.el 5 Dec 2010 20:49:23 -0000 1.76 @@ -1,6 +1,7 @@ ;;; context.el --- Support for ConTeXt documents. -;; Copyright (C) 2003, 2004, 2005, 2006, 2008 Free Software Foundation, Inc. +;; Copyright (C) 2003, 2004, 2005, 2006, 2008, 2010 Free Software +;; Foundation, Inc. ;; Maintainer: Berend de Boer <[email protected]> ;; Keywords: tex @@ -1532,6 +1533,8 @@ :type '(repeat regexp) :group 'TeX-command) +(TeX-abbrev-mode-setup context-mode) + (defun ConTeXt-mode-common-initialization () "Initialization code that is common for all ConTeXt interfaces." ;; `plain-TeX-common-initialization' kills all local variables, but @@ -1543,6 +1546,8 @@ (setq ConTeXt-current-interface save-ConTeXt-current-interface)) (setq major-mode 'context-mode) + (setq local-abbrev-table context-mode-abbrev-table) + ;; Make language specific variables buffer local (dolist (symbol ConTeXt-language-variable-list) (make-variable-buffer-local symbol)) _______________________________________________ auctex-diffs mailing list [email protected] http://lists.gnu.org/mailman/listinfo/auctex-diffs
