-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
tex-site.el
208 lines (171 loc) · 7.88 KB
/
tex-site.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
;;; tex-site.el - Site specific variables. Don't edit. -*- lexical-binding: t; -*-
;; Copyright (C) 2005-2024 Free Software Foundation, Inc.
;;
;; completely rewritten.
;; Author: David Kastrup <[email protected]>
;; Maintainer: [email protected]
;; Keywords: tex
;; This file is part of AUCTeX.
;; AUCTeX is free software; you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by the
;; Free Software Foundation; either version 3, or (at your option) any
;; later version.
;; AUCTeX is distributed in the hope that it will be useful, but WITHOUT
;; ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
;; FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
;; for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; This file contains startup code, autoloads and variables adapted to
;; the local site configuration. It is generated and placed by the
;; installation procedure and should not be edited by hand, nor moved
;; to a different place, as some settings may be established relative
;; to the file.
;; All user customization should be done with
;; M-x customize-variable RET
;;; Code:
(when (< emacs-major-version 27)
(error "AUCTeX requires Emacs 27.1 or later"))
(declare-function BibTeX-auto-store "latex")
(unless (or (fboundp 'TeX-modes-set) ;Avoid inf-looping.
(fboundp 'TeX-tex-mode)) ;auctex-autoloads is not loaded.
;; Try and support the case where someone loads tex-site.el or
;; auctex.el directly, in the old way.
(provide 'tex-site) ;Avoid (re)loading tex-site from auctex-autoloads.
(load "auctex-autoloads" 'noerror 'nomessage))
;; Define here in order for `M-x customize-group <RET> AUCTeX <RET>'
;; to work if the main AUCTeX files are not loaded yet.
(defgroup AUCTeX nil
"A (La)TeX environment."
:tag "AUCTeX"
:link '(custom-manual "(auctex)Top")
:link '(url-link :tag "Home Page" "https://www.gnu.org/software/auctex/")
:prefix "TeX-"
:group 'tex
:load "tex" :load "latex" :load "tex-style")
(defvar TeX-lisp-directory
(directory-file-name (file-name-directory load-file-name))
"The directory where most of the AUCTeX lisp files are located.
For the location of lisp files associated with
styles, see the variables TeX-style-* (hand-generated lisp) and
TeX-auto-* (automatically generated lisp).")
(add-to-list 'load-path TeX-lisp-directory)
(defvar TeX-data-directory
(directory-file-name (file-name-directory load-file-name))
"The directory where the AUCTeX non-Lisp data is located.")
(defcustom TeX-auto-global
(if (file-writable-p "/usr/local/var/auctex/")
"/usr/local/var/auctex/"
(concat user-emacs-directory "auctex/"))
"Directory containing automatically generated information.
For storing automatic extracted information about the TeX macros
shared by all users of a site."
:group 'TeX-file
:type 'directory)
(defconst TeX-mode-alist
'((tex-mode . TeX-tex-mode)
(plain-tex-mode . plain-TeX-mode)
(texinfo-mode . Texinfo-mode)
(latex-mode . LaTeX-mode)
(doctex-mode . docTeX-mode))
"Alist of built-in TeX modes and their counterparts in AUCTeX.")
(defun tex-site-unload-function ()
(TeX-modes-set 'TeX-modes nil)
;; COMPATIBILITY for Emacs<29
(put 'plain-TeX-mode 'auctex-function-definition nil)
(put 'LaTeX-mode 'auctex-function-definition nil)
(put 'TeX-mode 'auctex-function-definition nil)
(setq load-path (delq TeX-lisp-directory load-path))
;; Tell emacs to continue standard unloading procedure.
nil)
;; Silence the compiler for the variable defined below:
(defvar TeX-modes)
(defun TeX-modes-set (var value &optional _ignored)
"Set VAR (which should be `TeX-modes') to VALUE.
Arrange the redirection of the built-in TeX modes according to VALUE.
- The built-in modes in VALUE are redirected to the corresponding
AUCTeX major modes.
- The built-in modes not in VALUE discard redirection, if any.
If either `major-mode-remap-defaults' or `major-mode-remap-alist' is
available, use it for redirection in that order. Otherwise, use advice
facility."
(custom-set-default var value)
(let (elt dst)
(dolist (entry TeX-mode-alist)
(setq elt (car entry)
dst (cdr entry))
(if (memq elt value)
(progn
(cond ((boundp 'major-mode-remap-defaults)
;; For Emacs 30 and later
(add-to-list 'major-mode-remap-defaults (cons elt dst)))
((boundp 'major-mode-remap-alist)
;; COMPATIBILITY for Emacs 29
(add-to-list 'major-mode-remap-alist (cons elt dst)))
(t
;; COMPATIBILITY for Emacs<29
(advice-add elt :override dst
;; COMPATIBILITY for Emacs 28
;; Give it higher precedence than the :around
;; advice given to `tex-mode' in tex-mode.el.
;; <URL:https://lists.gnu.org/r/auctex-devel/2022-09/msg00050.html>
'((depth . -10)))))
;; Keep compatibility. (bug#71363)
(if (eq elt 'latex-mode)
(with-eval-after-load 'org-src
(defvar org-src-lang-modes) ; Silence byte compiler.
;; Check the actual presence in the entry in case that
;; the user once choosed AUCTeX LaTeX mode and
;; abandoned it afterwards in the same emacs session.
(when (memq 'latex-mode TeX-modes)
(push '("latex" . LaTeX) org-src-lang-modes)
(push '("beamer" . LaTeX) org-src-lang-modes)))))
(cond ((boundp 'major-mode-remap-defaults)
;; For Emacs 30 and later
(setq major-mode-remap-defaults
(delete entry major-mode-remap-defaults)))
((boundp 'major-mode-remap-alist)
;; COMPATIBILITY for Emacs 29
(setq major-mode-remap-alist
(delete entry major-mode-remap-alist)))
(t
;; COMPATIBILITY for Emacs<29
(advice-remove elt dst)))))))
(defcustom TeX-modes
(mapcar #'car TeX-mode-alist)
"List of built-in TeX modes redirected to AUCTeX modes.
This variable can't be set normally; use customize for that, or
set it with `TeX-modes-set'."
:type (cons 'set
(mapcar (lambda(x) (list 'const (car x))) TeX-mode-alist))
:set #'TeX-modes-set
:initialize #'custom-initialize-reset)
(defun TeX--alias-overlapped-modes (&optional restore)
"Delete or restore definition of overlapped modes via `defalias'.
Set function definition for modes overlapped between tex-mode.el
and AUCTeX, `plain-TeX-mode', `LaTeX-mode' and `TeX-mode'.
If optional argument RESTORE is nil, delete the definition.
Otherwise, restore AUCTeX definition saved in the symbol property
`auctex-function-definition'."
(dolist (mode '(plain-TeX-mode LaTeX-mode TeX-mode))
(if (eq (symbol-function mode)
(intern (downcase (symbol-name mode))))
(defalias mode (if restore
(get mode 'auctex-function-definition))))))
;; COMPATIBILITY for Emacs<29, which executes
;; (defalias 'LaTeX-mode #'latex-mode) etc. in tex-mode.el.
(with-eval-after-load 'tex-mode
;; This must be no-op after (unload-feature 'tex-site).
(if (featurep 'tex-site)
(TeX--alias-overlapped-modes t)))
;; Store bibitems when saving a BibTeX buffer
(add-hook 'bibtex-mode-hook #'BibTeX-auto-store)
;;; Code specific to ELPA packaging:
;; From preview-latex.el:
(defvar preview-TeX-style-dir
(expand-file-name "latex" (file-name-directory load-file-name)))
;;; Ensure that loading the autoloads file also loads this file.
;;;###autoload (require 'tex-site)
(provide 'tex-site)
;;; tex-site.el ends here