Mercurial > hg > xemacs-beta
comparison lisp/auctex/tex-site.el @ 24:4103f0995bd7 r19-15b95
Import from CVS: tag r19-15b95
author | cvs |
---|---|
date | Mon, 13 Aug 2007 08:51:03 +0200 |
parents | |
children | 25f70ba0133c |
comparison
equal
deleted
inserted
replaced
23:0edd3412f124 | 24:4103f0995bd7 |
---|---|
1 ;;; tex-site.el - Select AUC TeX as your tex mode. | |
2 | |
3 ;; Copyright (C) 1991 Kresten Krab Thorup | |
4 ;; Copyright (C) 1993, 1994, 1997 Per Abrahamsen | |
5 | |
6 ;; Author: Per Abrahamsen <abraham@iesd.auc.dk> | |
7 ;; Maintainer: Per Abrahamsen <auc-tex@sunsite.auc.dk> | |
8 ;; Version: XEmacs | |
9 ;; Keywords: wp | |
10 | |
11 ;; This program is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
13 ;; the Free Software Foundation; either version 2, or (at your option) | |
14 ;; any later version. | |
15 ;; | |
16 ;; This program is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 ;; | |
21 ;; You should have received a copy of the GNU General Public License | |
22 ;; along with this program; if not, write to the Free Software | |
23 ;; Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
24 | |
25 ;;; Commentary: | |
26 | |
27 ;; This file contains variables customized for the local site. | |
28 | |
29 ;; It also contains all necessary autoloads, so the user can simple | |
30 ;; enable AUC TeX by putting (load "tex-site") in his .emacs file, | |
31 ;; or the administrator can insert it in the site-start.el file. | |
32 ;; | |
33 ;; The ideal place for this file is in the `site-lisp' directory. | |
34 | |
35 ;;; Code: | |
36 | |
37 (defvar no-doc | |
38 "This function is part of AUC TeX, but has not yet been loaded. | |
39 Full documentation will be available after autoloading the function." | |
40 "Documentation for autoload functions.") | |
41 | |
42 ;;; Customization: | |
43 ;; | |
44 ;; Copy variables you need to change from the start of `tex.el' and | |
45 ;; insert them here. | |
46 | |
47 ;;; Autoloads: | |
48 | |
49 ;; This hook will store bibitems when you save a BibTeX buffer. | |
50 (add-hook 'bibtex-mode-hook 'BibTeX-auto-store) | |
51 | |
52 ;; Load from AUC TeX files instead of standard files. | |
53 (autoload 'tex-mode "tex" no-doc t) | |
54 (autoload 'plain-tex-mode "tex" no-doc t) | |
55 (autoload 'tex-insert-quote "tex" no-doc t) | |
56 (autoload 'texinfo-mode "tex-info" no-doc t) | |
57 (autoload 'latex-mode "latex" no-doc t) | |
58 | |
59 (provide 'tex-site) | |
60 | |
61 ;;; tex-site.el ends here |