annotate lisp/auctex/tex-site.el @ 143:50e7fedfe353

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