(ido-file-extensions-order): New defcustom.
[bpt/emacs.git] / lisp / textmodes / tex-mode.el
CommitLineData
95a045bd 1;;; tex-mode.el --- TeX, LaTeX, and SliTeX mode commands -*- coding: utf-8 -*-
d501f516 2
dd166d5f
SM
3;; Copyright (C) 1985, 1986, 1989, 1992, 1994, 1995, 1996, 1997, 1998, 1999,
4;; 2002, 2003, 2004 Free Software Foundation, Inc.
eea8d4ef 5
70f20973 6;; Maintainer: FSF
d7b4d18f 7;; Keywords: tex
e5167999 8
528415e7 9;; Contributions over the years by William F. Schelter, Dick King,
70f20973 10;; Stephen Gildea, Michael Prange, Jacob Gore, and Edward M. Reingold.
528415e7 11
869bff31 12;; This file is part of GNU Emacs.
13
14;; GNU Emacs is free software; you can redistribute it and/or modify
15;; it under the terms of the GNU General Public License as published by
e5167999 16;; the Free Software Foundation; either version 2, or (at your option)
869bff31 17;; any later version.
18
19;; GNU Emacs is distributed in the hope that it will be useful,
20;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;; GNU General Public License for more details.
23
24;; You should have received a copy of the GNU General Public License
6da9bbd6
RS
25;; along with GNU Emacs; see the file COPYING. If not, write to the
26;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27;; Boston, MA 02111-1307, USA.
869bff31 28
55535639
PJ
29;;; Commentary:
30
e5167999
ER
31;;; Code:
32
bed1b0c8
RS
33;; Pacify the byte-compiler
34(eval-when-compile
35 (require 'compare-w)
ea590e1c 36 (require 'cl)
bed1b0c8
RS
37 (require 'skeleton))
38
a0e9c22a 39(require 'shell)
2f3067de 40(require 'compile)
528415e7 41
d61140e8
RS
42(defgroup tex-file nil
43 "TeX files and directories"
44 :prefix "tex-"
45 :group 'tex)
46
47(defgroup tex-run nil
48 "Running external commands from TeX mode"
49 :prefix "tex-"
50 :group 'tex)
51
52(defgroup tex-view nil
53 "Viewing and printing TeX files"
54 :prefix "tex-"
55 :group 'tex)
56
7e1dae73 57;;;###autoload
d61140e8
RS
58(defcustom tex-shell-file-name nil
59 "*If non-nil, the shell file name to run in the subshell used to run TeX."
60 :type '(choice (const :tag "None" nil)
61 string)
62 :group 'tex-run)
528415e7 63
7e1dae73 64;;;###autoload
d61140e8 65(defcustom tex-directory "."
f73741fc 66 "*Directory in which temporary files are written.
81c735c0 67You can make this `/tmp' if your TEXINPUTS has no relative directories in it
528415e7 68and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are
d61140e8
RS
69`\\input' commands with relative directories."
70 :type 'directory
71 :group 'tex-file)
869bff31 72
725b7428 73;;;###autoload
d61140e8 74(defcustom tex-first-line-header-regexp nil
725b7428
RS
75 "Regexp for matching a first line which `tex-region' should include.
76If this is non-nil, it should be a regular expression string;
77if it matches the first line of the file,
d61140e8
RS
78`tex-region' always includes the first line in the TeX run."
79 :type '(choice (const :tag "None" nil)
80 regexp)
81 :group 'tex-file)
725b7428 82
f73741fc 83;;;###autoload
d61140e8 84(defcustom tex-main-file nil
f73741fc 85 "*The main TeX source file which includes this buffer's file.
be4a962d
RS
86The command `tex-file' runs TeX on the file specified by `tex-main-file'
87if the variable is non-nil."
d61140e8
RS
88 :type '(choice (const :tag "None" nil)
89 file)
90 :group 'tex-file)
f73741fc 91
7e1dae73 92;;;###autoload
d61140e8
RS
93(defcustom tex-offer-save t
94 "*If non-nil, ask about saving modified buffers before \\[tex-file] is run."
95 :type 'boolean
96 :group 'tex-file)
869bff31 97
7e1dae73 98;;;###autoload
d61140e8 99(defcustom tex-run-command "tex"
869bff31 100 "*Command used to run TeX subjob.
c3ce7bf4
RS
101TeX Mode sets `tex-command' to this string.
102See the documentation of that variable."
d61140e8
RS
103 :type 'string
104 :group 'tex-run)
869bff31 105
7e1dae73 106;;;###autoload
d61140e8 107(defcustom latex-run-command "latex"
869bff31 108 "*Command used to run LaTeX subjob.
c3ce7bf4
RS
109LaTeX Mode sets `tex-command' to this string.
110See the documentation of that variable."
d61140e8
RS
111 :type 'string
112 :group 'tex-run)
528415e7 113
bed1b0c8
RS
114;;;###autoload
115(defcustom slitex-run-command "slitex"
116 "*Command used to run SliTeX subjob.
c3ce7bf4
RS
117SliTeX Mode sets `tex-command' to this string.
118See the documentation of that variable."
bed1b0c8
RS
119 :type 'string
120 :group 'tex-run)
121
c3ce7bf4 122;;;###autoload
95a045bd 123(defcustom tex-start-options ""
9e0ad27a 124 "*TeX options to use when starting TeX.
95a045bd
SM
125These immediately precede the commands in `tex-start-commands'
126and the input file name, with no separating space and are not shell-quoted.
127If nil, TeX runs with no options. See the documentation of `tex-command'."
128 :type 'string
bed1b0c8 129 :group 'tex-run
9e0ad27a
RS
130 :version "21.4")
131
132;;;###autoload
133(defcustom tex-start-commands "\\nonstopmode\\input"
134 "*TeX commands to use when starting TeX.
95a045bd
SM
135They are shell-quoted and precede the input file name, with a separating space.
136If nil, no commands are used. See the documentation of `tex-command'."
9e0ad27a
RS
137 :type '(radio (const :tag "Interactive \(nil\)" nil)
138 (const :tag "Nonstop \(\"\\nonstopmode\\input\"\)"
139 "\\nonstopmode\\input")
140 (string :tag "String at your choice"))
141 :group 'tex-run
142 :version "21.4")
bed1b0c8 143
7afecb99 144(defvar latex-standard-block-names
dd459839
SM
145 '("abstract" "array" "center" "description"
146 "displaymath" "document" "enumerate" "eqnarray"
147 "eqnarray*" "equation" "figure" "figure*"
148 "flushleft" "flushright" "itemize" "letter"
149 "list" "minipage" "picture" "quotation"
150 "quote" "slide" "sloppypar" "tabbing"
151 "table" "table*" "tabular" "tabular*"
152 "thebibliography" "theindex*" "titlepage" "trivlist"
153 "verbatim" "verbatim*" "verse" "math")
528415e7
RS
154 "Standard LaTeX block names.")
155
7e1dae73 156;;;###autoload
d61140e8 157(defcustom latex-block-names nil
528415e7 158 "*User defined LaTeX block names.
7afecb99 159Combined with `latex-standard-block-names' for minibuffer completion."
d61140e8
RS
160 :type '(repeat string)
161 :group 'tex-run)
869bff31 162
7e1dae73 163;;;###autoload
d61140e8 164(defcustom tex-bibtex-command "bibtex"
528415e7 165 "*Command used by `tex-bibtex-file' to gather bibliographic data.
81c735c0 166If this string contains an asterisk (`*'), that is replaced by the file name;
d61140e8
RS
167otherwise, the file name, preceded by blank, is added at the end."
168 :type 'string
169 :group 'tex-run)
869bff31 170
7e1dae73 171;;;###autoload
d61140e8 172(defcustom tex-dvi-print-command "lpr -d"
528415e7 173 "*Command used by \\[tex-print] to print a .dvi file.
81c735c0 174If this string contains an asterisk (`*'), that is replaced by the file name;
d61140e8
RS
175otherwise, the file name, preceded by blank, is added at the end."
176 :type 'string
177 :group 'tex-view)
528415e7 178
7e1dae73 179;;;###autoload
d61140e8 180(defcustom tex-alt-dvi-print-command "lpr -d"
528415e7 181 "*Command used by \\[tex-print] with a prefix arg to print a .dvi file.
81c735c0
RS
182If this string contains an asterisk (`*'), that is replaced by the file name;
183otherwise, the file name, preceded by blank, is added at the end.
528415e7 184
81c735c0
RS
185If two printers are not enough of a choice, you can set the variable
186`tex-alt-dvi-print-command' to an expression that asks what you want;
528415e7
RS
187for example,
188
189 (setq tex-alt-dvi-print-command
190 '(format \"lpr -P%s\" (read-string \"Use printer: \")))
191
192would tell \\[tex-print] with a prefix argument to ask you which printer to
d61140e8
RS
193use."
194 :type '(choice (string :tag "Command")
195 (sexp :tag "Expression"))
196 :group 'tex-view)
869bff31 197
7e1dae73 198;;;###autoload
dd166d5f
SM
199(defcustom tex-dvi-view-command
200 '(cond
201 ((eq window-system 'x) "xdvi")
202 ((eq window-system 'w32) "yap")
203 (t "dvi2tty * | cat -s"))
81c735c0 204 "*Command used by \\[tex-view] to display a `.dvi' file.
746c30e2 205If it is a string, that specifies the command directly.
81c735c0 206If this string contains an asterisk (`*'), that is replaced by the file name;
746c30e2 207otherwise, the file name, preceded by a space, is added at the end.
528415e7 208
746c30e2
RS
209If the value is a form, it is evaluated to get the command to use."
210 :type '(choice (const nil) string sexp)
d61140e8 211 :group 'tex-view)
869bff31 212
7e1dae73 213;;;###autoload
d61140e8 214(defcustom tex-show-queue-command "lpq"
528415e7 215 "*Command used by \\[tex-show-print-queue] to show the print queue.
d61140e8
RS
216Should show the queue(s) that \\[tex-print] puts jobs on."
217 :type 'string
218 :group 'tex-view)
869bff31 219
7e1dae73 220;;;###autoload
9920303f 221(defcustom tex-default-mode 'latex-mode
869bff31 222 "*Mode to enter for a new file that might be either TeX or LaTeX.
223This variable is used when it can't be determined whether the file
224is plain TeX or LaTeX or what because the file contains no commands.
d61140e8
RS
225Normally set to either `plain-tex-mode' or `latex-mode'."
226 :type 'function
227 :group 'tex)
869bff31 228
7e1dae73 229;;;###autoload
d61140e8
RS
230(defcustom tex-open-quote "``"
231 "*String inserted by typing \\[tex-insert-quote] to open a quotation."
232 :type 'string
95a045bd 233 :options '("``" "\"<" "\"`" "<<" "«")
d61140e8 234 :group 'tex)
869bff31 235
7e1dae73 236;;;###autoload
d61140e8
RS
237(defcustom tex-close-quote "''"
238 "*String inserted by typing \\[tex-insert-quote] to close a quotation."
239 :type 'string
95a045bd 240 :options '("''" "\">" "\"'" ">>" "»")
d61140e8 241 :group 'tex)
869bff31 242
528415e7
RS
243(defvar tex-last-temp-file nil
244 "Latest temporary file generated by \\[tex-region] and \\[tex-buffer].
245Deleted when the \\[tex-region] or \\[tex-buffer] is next run, or when the
81c735c0 246tex shell terminates.")
528415e7 247
95a045bd 248(defvar tex-command "tex"
c3ce7bf4 249 "*Command to run TeX.
95a045bd 250If this string contains an asterisk \(`*'\), that is replaced by the file name;
9e0ad27a
RS
251otherwise the value of `tex-start-options', the \(shell-quoted\)
252value of `tex-start-commands', and the file name are added at the end
253with blanks as separators.
c3ce7bf4
RS
254
255In TeX, LaTeX, and SliTeX Mode this variable becomes buffer local.
256In these modes, use \\[set-variable] if you want to change it for the
257current buffer.")
869bff31 258
259(defvar tex-trailer nil
260 "String appended after the end of a region sent to TeX by \\[tex-region].")
261
262(defvar tex-start-of-header nil
898b9ac1 263 "Regular expression used by \\[tex-region] to find start of file's header.")
869bff31 264
265(defvar tex-end-of-header nil
898b9ac1 266 "Regular expression used by \\[tex-region] to find end of file's header.")
869bff31 267
268(defvar tex-shell-cd-command "cd"
269 "Command to give to shell running TeX to change directory.
81c735c0 270The value of `tex-directory' is appended to this, separated by a space.")
869bff31 271
272(defvar tex-zap-file nil
273 "Temporary file name used for text being sent as input to TeX.
274Should be a simple file name with no extension or directory specification.")
275
276(defvar tex-last-buffer-texed nil
277 "Buffer which was last TeXed.")
278
279(defvar tex-print-file nil
280 "File name that \\[tex-print] prints.
281Set by \\[tex-region], \\[tex-buffer], and \\[tex-file].")
282
8a591d52
SM
283(defvar tex-mode-syntax-table
284 (let ((st (make-syntax-table)))
285 (modify-syntax-entry ?% "<" st)
286 (modify-syntax-entry ?\n ">" st)
287 (modify-syntax-entry ?\f ">" st)
288 (modify-syntax-entry ?\C-@ "w" st)
289 (modify-syntax-entry ?' "w" st)
290 (modify-syntax-entry ?@ "_" st)
291 (modify-syntax-entry ?* "_" st)
292 (modify-syntax-entry ?\t " " st)
bca7a08b
SM
293 ;; ~ is printed by TeX as a space, but it's semantics in the syntax
294 ;; of TeX is not `whitespace' (i.e. it's just like \hspace{foo}).
8a591d52
SM
295 (modify-syntax-entry ?~ "." st)
296 (modify-syntax-entry ?$ "$$" st)
297 (modify-syntax-entry ?\\ "/" st)
298 (modify-syntax-entry ?\" "." st)
299 (modify-syntax-entry ?& "." st)
300 (modify-syntax-entry ?_ "." st)
301 (modify-syntax-entry ?^ "." st)
302 st)
869bff31 303 "Syntax table used while in TeX mode.")
53c4fe47
SM
304\f
305;;;;
306;;;; Imenu support
307;;;;
869bff31 308
d6709b80 309(defcustom latex-imenu-indent-string ". "
a53c647b
RS
310 "*String to add repeated in front of nested sectional units for Imenu.
311An alternative value is \" . \", if you use a font with a narrow period."
312 :type 'string
313 :group 'tex)
314
d6709b80
SM
315(defvar latex-section-alist
316 '(("part" . 0) ("chapter" . 1)
317 ("section" . 2) ("subsection" . 3)
318 ("subsubsection" . 4)
319 ("paragraph" . 5) ("subparagraph" . 6)))
320
53c4fe47
SM
321(defvar latex-metasection-list
322 '("documentstyle" "documentclass"
323 "begin{document}" "end{document}"
324 "appendix" "frontmatter" "mainmatter" "backmatter"))
325
a5e2ae01 326(defun latex-imenu-create-index ()
53c4fe47
SM
327 "Generate an alist for imenu from a LaTeX buffer."
328 (let ((section-regexp
329 (concat "\\\\" (regexp-opt (mapcar 'car latex-section-alist) t)
330 "\\*?[ \t]*{"))
331 (metasection-regexp
332 (concat "\\\\" (regexp-opt latex-metasection-list t)))
333 i0 menu case-fold-search)
a53c647b
RS
334 (save-excursion
335 ;; Find the top-most level in this file but don't allow it to be
336 ;; any deeper than "section" (which is top-level in an article).
337 (goto-char (point-min))
338 (if (search-forward-regexp "\\\\part\\*?[ \t]*{" nil t)
339 (setq i0 0)
340 (if (search-forward-regexp "\\\\chapter\\*?[ \t]*{" nil t)
341 (setq i0 1)
342 (setq i0 2)))
343
344 ;; Look for chapters and sections.
345 (goto-char (point-min))
53c4fe47 346 (while (search-forward-regexp section-regexp nil t)
a53c647b
RS
347 (let ((start (match-beginning 0))
348 (here (point))
349 (i (cdr (assoc (buffer-substring-no-properties
350 (match-beginning 1)
351 (match-end 1))
d6709b80 352 latex-section-alist))))
a53c647b
RS
353 (backward-char 1)
354 (condition-case err
355 (progn
356 ;; Using sexps allows some use of matching {...} inside
357 ;; titles.
358 (forward-sexp 1)
d6709b80
SM
359 (push (cons (concat (apply 'concat
360 (make-list
361 (max 0 (- i i0))
362 latex-imenu-indent-string))
363 (buffer-substring-no-properties
364 here (1- (point))))
365 start)
366 menu))
a53c647b
RS
367 (error nil))))
368
369 ;; Look for included material.
370 (goto-char (point-min))
371 (while (search-forward-regexp
372 "\\\\\\(include\\|input\\|verbatiminput\\|bibliography\\)\
53c4fe47 373\[ \t]*{\\([^}\n]+\\)}"
a53c647b 374 nil t)
53c4fe47
SM
375 (push (cons (concat "<<" (buffer-substring-no-properties
376 (match-beginning 2)
377 (match-end 2))
378 (if (= (char-after (match-beginning 1)) ?b)
379 ".bbl"
380 ".tex"))
381 (match-beginning 0))
382 menu))
a53c647b
RS
383
384 ;; Look for \frontmatter, \mainmatter, \backmatter, and \appendix.
385 (goto-char (point-min))
53c4fe47
SM
386 (while (search-forward-regexp metasection-regexp nil t)
387 (push (cons "--" (match-beginning 0)) menu))
a53c647b
RS
388
389 ;; Sort in increasing buffer position order.
390 (sort menu (function (lambda (a b) (< (cdr a) (cdr b))))))))
53c4fe47
SM
391\f
392;;;;
393;;;; Outline support
394;;;;
395
396(defvar latex-outline-regexp
397 (concat "\\\\"
398 (regexp-opt (append latex-metasection-list
399 (mapcar 'car latex-section-alist)) t)))
400
401(defun latex-outline-level ()
402 (if (looking-at latex-outline-regexp)
403 (1+ (or (cdr (assoc (match-string 1) latex-section-alist)) -1))
404 1000))
405\f
406;;;;
407;;;; Font-Lock support
408;;;;
409
410;(defvar tex-font-lock-keywords
411; ;; Regexps updated with help from Ulrik Dickow <dickow@nbi.dk>.
412; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}"
413; 2 font-lock-function-name-face)
414; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}"
415; 2 font-lock-constant-face)
416; ;; It seems a bit dubious to use `bold' and `italic' faces since we might
417; ;; not be able to display those fonts.
418; ("{\\\\bf\\([^}]+\\)}" 1 'bold keep)
419; ("{\\\\\\(em\\|it\\|sl\\)\\([^}]+\\)}" 2 'italic keep)
420; ("\\\\\\([a-zA-Z@]+\\|.\\)" . font-lock-keyword-face)
421; ("^[ \t\n]*\\\\def[\\\\@]\\(\\w+\\)" 1 font-lock-function-name-face keep))
422; ;; Rewritten and extended for LaTeX2e by Ulrik Dickow <dickow@nbi.dk>.
423; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}"
424; 2 font-lock-function-name-face)
425; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}"
426; 2 font-lock-constant-face)
427; ("^[ \t]*\\\\def\\\\\\(\\(\\w\\|@\\)+\\)" 1 font-lock-function-name-face)
428; "\\\\\\([a-zA-Z@]+\\|.\\)"
429; ;; It seems a bit dubious to use `bold' and `italic' faces since we might
430; ;; not be able to display those fonts.
431; ;; LaTeX2e: \emph{This is emphasized}.
432; ("\\\\emph{\\([^}]+\\)}" 1 'italic keep)
433; ;; LaTeX2e: \textbf{This is bold}, \textit{...}, \textsl{...}
434; ("\\\\text\\(\\(bf\\)\\|it\\|sl\\){\\([^}]+\\)}"
435; 3 (if (match-beginning 2) 'bold 'italic) keep)
436; ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables.
437; ("\\\\\\(\\(bf\\)\\|em\\|it\\|sl\\)\\>\\(\\([^}&\\]\\|\\\\[^\\]\\)+\\)"
438; 3 (if (match-beginning 2) 'bold 'italic) keep))
439
440;; Rewritten with the help of Alexandra Bac <abac@welcome.disi.unige.it>.
441(defconst tex-font-lock-keywords-1
442 (eval-when-compile
443 (let* (;; Names of commands whose arg should be fontified as heading, etc.
444 (headings (regexp-opt
445 '("title" "begin" "end" "chapter" "part"
446 "section" "subsection" "subsubsection"
447 "paragraph" "subparagraph" "subsubparagraph"
7afecb99
SM
448 "newcommand" "renewcommand" "providecommand"
449 "newenvironment" "renewenvironment"
450 "newtheorem" "renewtheorem")
53c4fe47
SM
451 t))
452 (variables (regexp-opt
453 '("newcounter" "newcounter*" "setcounter" "addtocounter"
454 "setlength" "addtolength" "settowidth")
455 t))
456 (includes (regexp-opt
457 '("input" "include" "includeonly" "bibliography"
458 "epsfig" "psfig" "epsf" "nofiles" "usepackage"
15ca8de7 459 "documentstyle" "documentclass" "verbatiminput"
dd166d5f
SM
460 "includegraphics" "includegraphics*"
461 "url" "nolinkurl")
53c4fe47
SM
462 t))
463 ;; Miscellany.
464 (slash "\\\\")
15ca8de7
SM
465 (opt " *\\(\\[[^]]*\\] *\\)*")
466 ;; This would allow highlighting \newcommand\CMD but requires
467 ;; adapting subgroup numbers below.
468 ;; (arg "\\(?:{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)\\|\\\\[a-z*]+\\)"))
1598a961 469 (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)"))
53c4fe47 470 (list
b119fdd5
SM
471 ;; font-lock-syntactic-keywords causes the \ of \end{verbatim} to be
472 ;; highlighted as tex-verbatim-face. Let's undo that.
473 ;; This is ugly and brittle :-( --Stef
474 '("^\\(\\\\\\)end" (1 (get-text-property (match-end 1) 'face) t))
95a045bd
SM
475 ;; display $$ math $$
476 ;; We only mark the match between $$ and $$ because the $$ delimiters
477 ;; themselves have already been marked (along with $..$) by syntactic
478 ;; fontification. Also this is done at the very beginning so as to
479 ;; interact with the other keywords in the same way as $...$ does.
480 (list "\\$\\$\\([^$]+\\)\\$\\$" 1 'tex-math-face)
53c4fe47
SM
481 ;; Heading args.
482 (list (concat slash headings "\\*?" opt arg)
bdbd9606
SM
483 ;; If ARG ends up matching too much (if the {} don't match, f.ex)
484 ;; jit-lock will do funny things: when updating the buffer
485 ;; the re-highlighting is only done locally so it will just
486 ;; match the local line, but defer-contextually will
487 ;; match more lines at a time, so ARG will end up matching
488 ;; a lot more, which might suddenly include a comment
489 ;; so you get things highlighted bold when you type them
490 ;; but they get turned back to normal a little while later
491 ;; because "there's already a face there".
492 ;; Using `keep' works around this un-intuitive behavior as well
15ca8de7
SM
493 ;; as improves the behavior in the very rare case where you do
494 ;; have a comment in ARG.
bdbd9606 495 3 'font-lock-function-name-face 'keep)
7afecb99
SM
496 (list (concat slash "\\(?:provide\\|\\(?:re\\)?new\\)command\\** *\\(\\\\[A-Za-z@]+\\)")
497 1 'font-lock-function-name-face 'keep)
53c4fe47 498 ;; Variable args.
15ca8de7 499 (list (concat slash variables " *" arg) 2 'font-lock-variable-name-face)
53c4fe47
SM
500 ;; Include args.
501 (list (concat slash includes opt arg) 3 'font-lock-builtin-face)
502 ;; Definitions. I think.
15ca8de7 503 '("^[ \t]*\\\\def *\\\\\\(\\(\\w\\|@\\)+\\)"
bdbd9606 504 1 font-lock-function-name-face))))
53c4fe47
SM
505 "Subdued expressions to highlight in TeX modes.")
506
1f4cc034
SM
507(defun tex-font-lock-append-prop (prop)
508 (unless (memq (get-text-property (match-end 1) 'face)
509 '(font-lock-comment-face tex-verbatim-face))
510 prop))
511
53c4fe47
SM
512(defconst tex-font-lock-keywords-2
513 (append tex-font-lock-keywords-1
514 (eval-when-compile
515 (let* (;;
516 ;; Names of commands whose arg should be fontified with fonts.
1598a961 517 (bold (regexp-opt '("textbf" "textsc" "textup"
53c4fe47 518 "boldsymbol" "pmb") t))
1598a961 519 (italic (regexp-opt '("textit" "textsl" "emph") t))
a3d80d4a
SM
520 ;; FIXME: unimplemented yet.
521 ;; (type (regexp-opt '("texttt" "textmd" "textrm" "textsf") t))
53c4fe47
SM
522 ;;
523 ;; Names of commands whose arg should be fontified as a citation.
524 (citations (regexp-opt
525 '("label" "ref" "pageref" "vref" "eqref"
15ca8de7 526 "cite" "nocite" "index" "glossary" "bibitem"
1598a961
SM
527 ;; These are text, rather than citations.
528 ;; "caption" "footnote" "footnotemark" "footnotetext"
529 )
53c4fe47
SM
530 t))
531 ;;
532 ;; Names of commands that should be fontified.
1b741d9e
AS
533 (specials-1 (regexp-opt '("\\" "\\*") t)) ;; "-"
534 (specials-2 (regexp-opt
535 '("linebreak" "nolinebreak" "pagebreak" "nopagebreak"
536 "newline" "newpage" "clearpage" "cleardoublepage"
537 "displaybreak" "allowdisplaybreaks"
538 "enlargethispage") t))
53c4fe47
SM
539 (general "\\([a-zA-Z@]+\\**\\|[^ \t\n]\\)")
540 ;;
541 ;; Miscellany.
542 (slash "\\\\")
15ca8de7 543 (opt " *\\(\\[[^]]*\\] *\\)*")
7afecb99 544 (args "\\(\\(?:[^{}&\\]+\\|\\\\.\\|{[^}]*}\\)+\\)")
1598a961 545 (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)"))
53c4fe47
SM
546 (list
547 ;;
548 ;; Citation args.
549 (list (concat slash citations opt arg) 3 'font-lock-constant-face)
550 ;;
15ca8de7 551 ;; Text between `` quotes ''.
95a045bd 552 (cons (concat (regexp-opt `("``" "\"<" "\"`" "<<" "«") t)
7abc9add 553 "[^'\">{]+" ;a bit pessimistic
95a045bd 554 (regexp-opt `("''" "\">" "\"'" ">>" "»") t))
15ca8de7
SM
555 'font-lock-string-face)
556 ;;
53c4fe47 557 ;; Command names, special and general.
1b741d9e
AS
558 (cons (concat slash specials-1) 'font-lock-warning-face)
559 (list (concat "\\(" slash specials-2 "\\)\\([^a-zA-Z@]\\|\\'\\)")
560 1 'font-lock-warning-face)
53c4fe47
SM
561 (concat slash general)
562 ;;
563 ;; Font environments. It seems a bit dubious to use `bold' etc. faces
564 ;; since we might not be able to display those fonts.
1f4cc034
SM
565 (list (concat slash bold " *" arg) 2
566 '(tex-font-lock-append-prop 'bold) 'append)
567 (list (concat slash italic " *" arg) 2
568 '(tex-font-lock-append-prop 'italic) 'append)
1598a961 569 ;; (list (concat slash type arg) 2 '(quote bold-italic) 'append)
53c4fe47
SM
570 ;;
571 ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables.
7afecb99 572 (list (concat "\\\\\\(em\\|it\\|sl\\)\\>" args)
1f4cc034 573 2 '(tex-font-lock-append-prop 'italic) 'append)
7afecb99
SM
574 ;; This is separate from the previous one because of cases like
575 ;; {\em foo {\bf bar} bla} where both match.
1f4cc034
SM
576 (list (concat "\\\\\\(bf\\)\\>" args)
577 2 '(tex-font-lock-append-prop 'bold) 'append)))))
53c4fe47
SM
578 "Gaudy expressions to highlight in TeX modes.")
579
7afecb99
SM
580(defun tex-font-lock-suscript (pos)
581 (unless (or (memq (get-text-property pos 'face)
582 '(font-lock-constant-face font-lock-builtin-face
583 font-lock-comment-face tex-verbatim-face))
584 ;; Check for backslash quoting
585 (let ((odd nil)
586 (pos pos))
587 (while (eq (char-before pos) ?\\)
588 (setq pos (1- pos) odd (not odd)))
589 odd))
590 (if (eq (char-after pos) ?_)
591 '(face subscript display (raise -0.3))
592 '(face superscript display (raise +0.3)))))
593
594(defconst tex-font-lock-keywords-3
595 (append tex-font-lock-keywords-2
596 (eval-when-compile
597 (let ((general "\\([a-zA-Z@]+\\|[^ \t\n]\\)")
598 (slash "\\\\")
599 ;; This is not the same regexp as before: it has a `+' removed.
600 ;; The + makes the matching faster in the above cases (where we can
601 ;; exit as soon as the match fails) but would make this matching
602 ;; degenerate to nasty complexity (because we try to match the
603 ;; closing brace, which forces trying all matching combinations).
604 (arg "{\\(?:[^{}\\]\\|\\\\.\\|{[^}]*}\\)*"))
605 `((,(concat "[_^] *\\([^\n\\{}]\\|" slash general "\\|" arg "}\\)")
606 (1 (tex-font-lock-suscript (match-beginning 0))
607 append))))))
608 "Experimental expressions to highlight in TeX modes.")
609
53c4fe47
SM
610(defvar tex-font-lock-keywords tex-font-lock-keywords-1
611 "Default expressions to highlight in TeX modes.")
0fb4f245 612
7afecb99
SM
613(defvar tex-verbatim-environments
614 '("verbatim" "verbatim*"))
615
616(defvar tex-font-lock-syntactic-keywords
617 (let ((verbs (regexp-opt tex-verbatim-environments t)))
618 `((,(concat "^\\\\begin *{" verbs "}.*\\(\n\\)") 2 "|")
1f4cc034
SM
619 ;; Technically, we'd like to put the "|" property on the \n preceding
620 ;; the \end, but this would have 2 disadvantages:
621 ;; 1 - it's wrong if the verbatim env is empty (the same \n is used to
622 ;; start and end the fenced-string).
623 ;; 2 - font-lock considers the preceding \n as being part of the
624 ;; preceding line, so things gets screwed every time the previous
625 ;; line is re-font-locked on its own.
b119fdd5
SM
626 ;; There's a hack in tex-font-lock-keywords-1 to remove the verbatim
627 ;; face from the \ but C-M-f still jumps to the wrong spot :-( --Stef
1f4cc034 628 (,(concat "^\\(\\\\\\)end *{" verbs "}\\(.?\\)") (1 "|") (3 "<"))
7afecb99
SM
629 ;; ("^\\(\\\\\\)begin *{comment}" 1 "< b")
630 ;; ("^\\\\end *{comment}.*\\(\n\\)" 1 "> b")
631 ("\\\\verb\\**\\([^a-z@*]\\)" 1 "\""))))
632
633(defun tex-font-lock-unfontify-region (beg end)
634 (font-lock-default-unfontify-region beg end)
635 (while (< beg end)
636 (let ((next (next-single-property-change beg 'display nil end))
637 (prop (get-text-property beg 'display)))
638 (if (and (eq (car-safe prop) 'raise)
639 (member (car-safe (cdr prop)) '(-0.3 +0.3))
640 (null (cddr prop)))
641 (put-text-property beg next 'display nil))
642 (setq beg next))))
643
644(defface superscript
645 '((t :height 0.8)) ;; :raise 0.3
646 "Face used for superscripts.")
647(defface subscript
648 '((t :height 0.8)) ;; :raise -0.3
649 "Face used for subscripts.")
bdbd9606
SM
650
651(defface tex-math-face
652 '((t :inherit font-lock-string-face))
653 "Face used to highlight TeX math expressions.")
654(defvar tex-math-face 'tex-math-face)
7afecb99
SM
655(defface tex-verbatim-face
656 ;; '((t :inherit font-lock-string-face))
657 '((t :family "courier"))
658 "Face used to highlight TeX verbatim environments.")
659(defvar tex-verbatim-face 'tex-verbatim-face)
bdbd9606
SM
660
661;; Use string syntax but math face for $...$.
662(defun tex-font-lock-syntactic-face-function (state)
7afecb99
SM
663 (let ((char (nth 3 state)))
664 (cond
665 ((not char) font-lock-comment-face)
666 ((eq char ?$) tex-math-face)
667 (t
668 (when (char-valid-p char)
669 ;; This is a \verb?...? construct. Let's find the end and mark it.
670 (save-excursion
671 (skip-chars-forward (string ?^ char)) ;; Use `end' ?
672 (when (eq (char-syntax (preceding-char)) ?/)
673 (put-text-property (1- (point)) (point) 'syntax-table '(1)))
674 (unless (eobp)
675 (put-text-property (point) (1+ (point)) 'syntax-table '(7)))))
676 tex-verbatim-face))))
bdbd9606 677
53c4fe47 678\f
869bff31 679(defun tex-define-common-keys (keymap)
81c735c0 680 "Define the keys that we want defined both in TeX mode and in the TeX shell."
869bff31 681 (define-key keymap "\C-c\C-k" 'tex-kill-job)
682 (define-key keymap "\C-c\C-l" 'tex-recenter-output-buffer)
683 (define-key keymap "\C-c\C-q" 'tex-show-print-queue)
684 (define-key keymap "\C-c\C-p" 'tex-print)
685 (define-key keymap "\C-c\C-v" 'tex-view)
62a24cb5
RS
686
687 (define-key keymap [menu-bar tex] (cons "TeX" (make-sparse-keymap "TeX")))
688
bdbd9606
SM
689 (define-key keymap [menu-bar tex tex-kill-job]
690 '(menu-item "Tex Kill" tex-kill-job :enable (tex-shell-running)))
cf6d6e8a 691 (define-key keymap [menu-bar tex tex-recenter-output-buffer]
bdbd9606
SM
692 '(menu-item "Tex Recenter" tex-recenter-output-buffer
693 :enable (get-buffer "*tex-shell*")))
62a24cb5
RS
694 (define-key keymap [menu-bar tex tex-show-print-queue]
695 '("Show Print Queue" . tex-show-print-queue))
cf6d6e8a 696 (define-key keymap [menu-bar tex tex-alt-print]
bdbd9606
SM
697 '(menu-item "Tex Print (alt printer)" tex-alt-print
698 :enable (stringp tex-print-file)))
699 (define-key keymap [menu-bar tex tex-print]
700 '(menu-item "Tex Print" tex-print :enable (stringp tex-print-file)))
701 (define-key keymap [menu-bar tex tex-view]
702 '(menu-item "Tex View" tex-view :enable (stringp tex-print-file))))
703
704(defvar tex-mode-map
705 (let ((map (make-sparse-keymap)))
15ca8de7 706 (set-keymap-parent map text-mode-map)
bdbd9606
SM
707 (tex-define-common-keys map)
708 (define-key map "\"" 'tex-insert-quote)
709 (define-key map "(" 'skeleton-pair-insert-maybe)
710 (define-key map "{" 'skeleton-pair-insert-maybe)
711 (define-key map "[" 'skeleton-pair-insert-maybe)
712 (define-key map "$" 'skeleton-pair-insert-maybe)
713 (define-key map "\n" 'tex-terminate-paragraph)
714 (define-key map "\M-\r" 'latex-insert-item)
715 (define-key map "\C-c}" 'up-list)
716 (define-key map "\C-c{" 'tex-insert-braces)
717 (define-key map "\C-c\C-r" 'tex-region)
718 (define-key map "\C-c\C-b" 'tex-buffer)
719 (define-key map "\C-c\C-f" 'tex-file)
75035a80 720 (define-key map "\C-c\C-c" 'tex-compile)
bdbd9606 721 (define-key map "\C-c\C-i" 'tex-bibtex-file)
7afecb99
SM
722 (define-key map "\C-c\C-o" 'latex-insert-block)
723 (define-key map "\C-c\C-e" 'latex-close-block)
bdbd9606
SM
724 (define-key map "\C-c\C-u" 'tex-goto-last-unclosed-latex-block)
725 (define-key map "\C-c\C-m" 'tex-feed-input)
726 (define-key map [(control return)] 'tex-feed-input)
727 (define-key map [menu-bar tex tex-bibtex-file]
728 '("BibTeX File" . tex-bibtex-file))
729 (define-key map [menu-bar tex tex-validate-region]
730 '(menu-item "Validate Region" tex-validate-region :enable mark-active))
731 (define-key map [menu-bar tex tex-validate-buffer]
732 '("Validate Buffer" . tex-validate-buffer))
733 (define-key map [menu-bar tex tex-region]
734 '(menu-item "TeX Region" tex-region :enable mark-active))
735 (define-key map [menu-bar tex tex-buffer]
736 '("TeX Buffer" . tex-buffer))
737 (define-key map [menu-bar tex tex-file] '("TeX File" . tex-file))
738 map)
15ca8de7
SM
739 "Keymap shared by TeX modes.")
740
741(defvar latex-mode-map
742 (let ((map (make-sparse-keymap)))
743 (set-keymap-parent map tex-mode-map)
a3d80d4a 744 (define-key map "\C-c\C-s" 'latex-split-block)
15ca8de7
SM
745 map)
746 "Keymap for `latex-mode'. See also `tex-mode-map'.")
747
748(defvar plain-tex-mode-map
749 (let ((map (make-sparse-keymap)))
750 (set-keymap-parent map tex-mode-map)
751 map)
752 "Keymap for `plain-tex-mode'. See also `tex-mode-map'.")
cf6d6e8a 753
d6709b80
SM
754(defvar tex-shell-map
755 (let ((m (make-sparse-keymap)))
756 (set-keymap-parent m shell-mode-map)
757 (tex-define-common-keys m)
758 m)
81c735c0 759 "Keymap for the TeX shell.
dca5ea48 760Inherits `shell-mode-map' with a few additions.")
869bff31 761
6da9bbd6
RS
762(defvar tex-face-alist
763 '((bold . "{\\bf ")
764 (italic . "{\\it ")
765 (bold-italic . "{\\bi ") ; hypothetical
766 (underline . "\\underline{")
767 (default . "{\\rm "))
768 "Alist of face and TeX font name for facemenu.")
769
770(defvar tex-latex-face-alist
771 `((italic . "{\\em ")
772 ,@tex-face-alist)
773 "Alist of face and LaTeX font name for facemenu.")
774
15ca8de7
SM
775;; This would be a lot simpler if we just used a regexp search,
776;; but then it would be too slow.
a3d80d4a 777(defun tex-guess-mode ()
d6709b80 778 (let ((mode tex-default-mode) slash comment)
869bff31 779 (save-excursion
780 (goto-char (point-min))
781 (while (and (setq slash (search-forward "\\" nil t))
782 (setq comment (let ((search-end (point)))
783 (save-excursion
784 (beginning-of-line)
785 (search-forward "%" search-end t))))))
bdbd9606
SM
786 (when (and slash (not comment))
787 (setq mode
788 (if (looking-at
789 (eval-when-compile
790 (concat
791 (regexp-opt '("documentstyle" "documentclass"
95a045bd 792 "begin" "subsection" "section"
bca7a08b
SM
793 "part" "chapter" "newcommand"
794 "renewcommand") 'words)
bdbd9606 795 "\\|NeedsTeXFormat{LaTeX")))
dd166d5f
SM
796 (if (and (looking-at
797 "document\\(style\\|class\\)\\(\\[.*\\]\\)?{slides}")
798 ;; SliTeX is almost never used any more nowadays.
799 (tex-executable-exists-p slitex-run-command))
bdbd9606
SM
800 'slitex-mode
801 'latex-mode)
802 'plain-tex-mode))))
d6709b80 803 (funcall mode)))
e4c8c838 804
a3d80d4a
SM
805;; `tex-mode' plays two roles: it's the parent of several sub-modes
806;; but it's also the function that chooses between those submodes.
807;; To tell the difference between those two cases where the function
808;; might be called, we check `delay-mode-hooks'.
a3d80d4a
SM
809(define-derived-mode tex-mode text-mode "generic-TeX"
810 (tex-common-initialization))
bca7a08b
SM
811;; We now move the function and define it again. This gives a warning
812;; in the byte-compiler :-( but it's difficult to avoid because
813;; `define-derived-mode' will necessarily define the function once
814;; and we need to define it a second time for `autoload' to get the
815;; proper docstring.
816(defalias 'tex-mode-internal (symbol-function 'tex-mode))
817;;;###autoload
818(defun tex-mode ()
819 "Major mode for editing files of input for TeX, LaTeX, or SliTeX.
a3d80d4a
SM
820Tries to determine (by looking at the beginning of the file) whether
821this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode',
822`latex-mode', or `slitex-mode', respectively. If it cannot be determined,
823such as if there are no commands in the file, the value of `tex-default-mode'
824says which mode to use."
bca7a08b
SM
825 (interactive)
826 (if delay-mode-hooks
827 ;; We're called from one of the children already.
828 (tex-mode-internal)
829 (tex-guess-mode)))
a3d80d4a 830
6503cec3 831;;;###autoload
31e1d920 832(defalias 'TeX-mode 'tex-mode)
6503cec3 833;;;###autoload
c3ce7bf4
RS
834(defalias 'plain-TeX-mode 'plain-tex-mode)
835;;;###autoload
31e1d920 836(defalias 'LaTeX-mode 'latex-mode)
869bff31 837
7229064d 838;;;###autoload
a3d80d4a 839(define-derived-mode plain-tex-mode tex-mode "TeX"
869bff31 840 "Major mode for editing files of input for plain TeX.
841Makes $ and } display the characters they match.
842Makes \" insert `` when it seems to be the beginning of a quotation,
843and '' when it appears to be the end; it inserts \" only after a \\.
844
845Use \\[tex-region] to run TeX on the current region, plus a \"header\"
846copied from the top of the file (containing macro definitions, etc.),
847running TeX under a special subshell. \\[tex-buffer] does the whole buffer.
848\\[tex-file] saves the buffer and then processes the file.
849\\[tex-print] prints the .dvi file made by any of these.
850\\[tex-view] previews the .dvi file made by any of these.
851\\[tex-bibtex-file] runs bibtex on the file of the current buffer.
852
e6b0b773 853Use \\[tex-validate-buffer] to check buffer for paragraphs containing
869bff31 854mismatched $'s or braces.
855
856Special commands:
15ca8de7 857\\{plain-tex-mode-map}
869bff31 858
859Mode variables:
860tex-run-command
861 Command string used by \\[tex-region] or \\[tex-buffer].
862tex-directory
863 Directory in which to create temporary files for TeX jobs
864 run by \\[tex-region] or \\[tex-buffer].
865tex-dvi-print-command
866 Command string used by \\[tex-print] to print a .dvi file.
528415e7
RS
867tex-alt-dvi-print-command
868 Alternative command string used by \\[tex-print] (when given a prefix
869 argument) to print a .dvi file.
869bff31 870tex-dvi-view-command
871 Command string used by \\[tex-view] to preview a .dvi file.
872tex-show-queue-command
873 Command string used by \\[tex-show-print-queue] to show the print
874 queue that \\[tex-print] put your job on.
875
81c735c0
RS
876Entering Plain-tex mode runs the hook `text-mode-hook', then the hook
877`tex-mode-hook', and finally the hook `plain-tex-mode-hook'. When the
878special subshell is initiated, the hook `tex-shell-hook' is run."
a3d80d4a
SM
879 (set (make-local-variable 'tex-command) tex-run-command)
880 (set (make-local-variable 'tex-start-of-header) "%\\*\\*start of header")
881 (set (make-local-variable 'tex-end-of-header) "%\\*\\*end of header")
882 (set (make-local-variable 'tex-trailer) "\\bye\n"))
869bff31 883
7229064d 884;;;###autoload
a3d80d4a 885(define-derived-mode latex-mode tex-mode "LaTeX"
869bff31 886 "Major mode for editing files of input for LaTeX.
887Makes $ and } display the characters they match.
888Makes \" insert `` when it seems to be the beginning of a quotation,
889and '' when it appears to be the end; it inserts \" only after a \\.
890
891Use \\[tex-region] to run LaTeX on the current region, plus the preamble
892copied from the top of the file (containing \\documentstyle, etc.),
893running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer.
894\\[tex-file] saves the buffer and then processes the file.
895\\[tex-print] prints the .dvi file made by any of these.
896\\[tex-view] previews the .dvi file made by any of these.
897\\[tex-bibtex-file] runs bibtex on the file of the current buffer.
898
e6b0b773 899Use \\[tex-validate-buffer] to check buffer for paragraphs containing
869bff31 900mismatched $'s or braces.
901
902Special commands:
15ca8de7 903\\{latex-mode-map}
869bff31 904
905Mode variables:
906latex-run-command
907 Command string used by \\[tex-region] or \\[tex-buffer].
908tex-directory
909 Directory in which to create temporary files for LaTeX jobs
910 run by \\[tex-region] or \\[tex-buffer].
911tex-dvi-print-command
912 Command string used by \\[tex-print] to print a .dvi file.
528415e7
RS
913tex-alt-dvi-print-command
914 Alternative command string used by \\[tex-print] (when given a prefix
915 argument) to print a .dvi file.
869bff31 916tex-dvi-view-command
917 Command string used by \\[tex-view] to preview a .dvi file.
918tex-show-queue-command
919 Command string used by \\[tex-show-print-queue] to show the print
920 queue that \\[tex-print] put your job on.
921
bed1b0c8 922Entering Latex mode runs the hook `text-mode-hook', then
81c735c0
RS
923`tex-mode-hook', and finally `latex-mode-hook'. When the special
924subshell is initiated, `tex-shell-hook' is run."
a3d80d4a
SM
925 (set (make-local-variable 'tex-command) latex-run-command)
926 (set (make-local-variable 'tex-start-of-header)
927 "\\\\document\\(style\\|class\\)")
928 (set (make-local-variable 'tex-end-of-header) "\\\\begin\\s-*{document}")
d9cbee57 929 (set (make-local-variable 'tex-trailer) "\\end{document}\n")
ab2c9f54
RS
930 ;; A line containing just $$ is treated as a paragraph separator.
931 ;; A line starting with $$ starts a paragraph,
932 ;; but does not separate paragraphs if it has more stuff on it.
d6709b80 933 (setq paragraph-start
a3d80d4a 934 (concat "[ \t]*\\(\\$\\$\\|"
d6709b80
SM
935 "\\\\[][]\\|"
936 "\\\\" (regexp-opt (append
937 (mapcar 'car latex-section-alist)
938 '("begin" "label" "end"
939 "item" "bibitem" "newline" "noindent"
940 "newpage" "footnote" "marginpar"
941 "parbox" "caption")) t)
942 "\\>\\|\\\\[a-z]*" (regexp-opt '("space" "skip" "page") t)
dd459839 943 "\\>\\)"))
d6709b80 944 (setq paragraph-separate
dd459839 945 (concat "[\f%]\\|[ \t]*\\($\\|"
d6709b80
SM
946 "\\\\[][]\\|"
947 "\\\\" (regexp-opt (append
948 (mapcar 'car latex-section-alist)
949 '("begin" "label" "end" )) t)
950 "\\>\\|\\\\\\(" (regexp-opt '("item" "bibitem" "newline"
951 "noindent" "newpage" "footnote"
952 "marginpar" "parbox" "caption"))
dd459839
SM
953 "\\|\\$\\$\\|[a-z]*\\(space\\|skip\\|page[a-z]*\\)"
954 "\\>\\)[ \t]*\\($\\|%\\)\\)"))
d6709b80
SM
955 (set (make-local-variable 'imenu-create-index-function)
956 'latex-imenu-create-index)
957 (set (make-local-variable 'tex-face-alist) tex-latex-face-alist)
95a045bd 958 (add-hook 'fill-nobreak-predicate 'latex-fill-nobreak-predicate nil t)
ea590e1c 959 (set (make-local-variable 'indent-line-function) 'latex-indent)
dd459839 960 (set (make-local-variable 'fill-indent-according-to-mode) t)
d6709b80
SM
961 (set (make-local-variable 'outline-regexp) latex-outline-regexp)
962 (set (make-local-variable 'outline-level) 'latex-outline-level)
53c4fe47 963 (set (make-local-variable 'forward-sexp-function) 'latex-forward-sexp)
a3d80d4a 964 (set (make-local-variable 'skeleton-end-hook) nil))
869bff31 965
bd2f2323 966;;;###autoload
d6709b80 967(define-derived-mode slitex-mode latex-mode "SliTeX"
869bff31 968 "Major mode for editing files of input for SliTeX.
969Makes $ and } display the characters they match.
970Makes \" insert `` when it seems to be the beginning of a quotation,
971and '' when it appears to be the end; it inserts \" only after a \\.
972
973Use \\[tex-region] to run SliTeX on the current region, plus the preamble
974copied from the top of the file (containing \\documentstyle, etc.),
975running SliTeX under a special subshell. \\[tex-buffer] does the whole buffer.
976\\[tex-file] saves the buffer and then processes the file.
977\\[tex-print] prints the .dvi file made by any of these.
978\\[tex-view] previews the .dvi file made by any of these.
979\\[tex-bibtex-file] runs bibtex on the file of the current buffer.
980
e6b0b773 981Use \\[tex-validate-buffer] to check buffer for paragraphs containing
869bff31 982mismatched $'s or braces.
983
984Special commands:
15ca8de7 985\\{slitex-mode-map}
869bff31 986
987Mode variables:
988slitex-run-command
989 Command string used by \\[tex-region] or \\[tex-buffer].
990tex-directory
991 Directory in which to create temporary files for SliTeX jobs
992 run by \\[tex-region] or \\[tex-buffer].
993tex-dvi-print-command
994 Command string used by \\[tex-print] to print a .dvi file.
528415e7
RS
995tex-alt-dvi-print-command
996 Alternative command string used by \\[tex-print] (when given a prefix
997 argument) to print a .dvi file.
869bff31 998tex-dvi-view-command
999 Command string used by \\[tex-view] to preview a .dvi file.
1000tex-show-queue-command
1001 Command string used by \\[tex-show-print-queue] to show the print
1002 queue that \\[tex-print] put your job on.
1003
81c735c0
RS
1004Entering SliTeX mode runs the hook `text-mode-hook', then the hook
1005`tex-mode-hook', then the hook `latex-mode-hook', and finally the hook
1006`slitex-mode-hook'. When the special subshell is initiated, the hook
1007`tex-shell-hook' is run."
869bff31 1008 (setq tex-command slitex-run-command)
d6709b80 1009 (setq tex-start-of-header "\\\\documentstyle{slides}\\|\\\\documentclass{slides}"))
869bff31 1010
1011(defun tex-common-initialization ()
822eddf4 1012 ;; Regexp isearch should accept newline and formfeed as whitespace.
d6709b80 1013 (set (make-local-variable 'search-whitespace-regexp) "[ \t\r\n\f]+")
64db2461 1014 ;; A line containing just $$ is treated as a paragraph separator.
d6709b80
SM
1015 (set (make-local-variable 'paragraph-start)
1016 "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$")
ab2c9f54
RS
1017 ;; A line starting with $$ starts a paragraph,
1018 ;; but does not separate paragraphs if it has more stuff on it.
d6709b80
SM
1019 (set (make-local-variable 'paragraph-separate)
1020 "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$[ \t]*$")
1021 (set (make-local-variable 'comment-start) "%")
1022 (set (make-local-variable 'comment-add) 1)
1023 (set (make-local-variable 'comment-start-skip)
5ae0d697 1024 "\\(\\(^\\|[^\\\n]\\)\\(\\\\\\\\\\)*\\)\\(%+ *\\)")
d6709b80
SM
1025 (set (make-local-variable 'parse-sexp-ignore-comments) t)
1026 (set (make-local-variable 'compare-windows-whitespace)
1027 'tex-categorize-whitespace)
1028 (set (make-local-variable 'facemenu-add-face-function)
1029 (lambda (face end)
1030 (let ((face-text (cdr (assq face tex-face-alist))))
1031 (if face-text
1032 face-text
1033 (error "Face %s not configured for %s mode" face mode-name)))))
1034 (set (make-local-variable 'facemenu-end-add-face) "}")
1035 (set (make-local-variable 'facemenu-remove-face-function) t)
1036 (set (make-local-variable 'font-lock-defaults)
7afecb99
SM
1037 '((tex-font-lock-keywords tex-font-lock-keywords-1
1038 tex-font-lock-keywords-2 tex-font-lock-keywords-3)
d6709b80
SM
1039 nil nil ((?$ . "\"")) nil
1040 ;; Who ever uses that anyway ???
bdbd9606
SM
1041 (font-lock-mark-block-function . mark-paragraph)
1042 (font-lock-syntactic-face-function
7afecb99
SM
1043 . tex-font-lock-syntactic-face-function)
1044 (font-lock-unfontify-region-function
1045 . tex-font-lock-unfontify-region)
1046 (font-lock-syntactic-keywords
1047 . tex-font-lock-syntactic-keywords)
1048 (parse-sexp-lookup-properties . t)))
95a045bd
SM
1049 ;; TABs in verbatim environments don't do what you think.
1050 (set (make-local-variable 'indent-tabs-mode) nil)
7afecb99 1051 ;; Other vars that should be buffer-local.
869bff31 1052 (make-local-variable 'tex-command)
1053 (make-local-variable 'tex-start-of-header)
1054 (make-local-variable 'tex-end-of-header)
1055 (make-local-variable 'tex-trailer))
1056
869bff31 1057(defun tex-categorize-whitespace (backward-limit)
1058 ;; compare-windows-whitespace is set to this.
1059 ;; This is basically a finite-state machine.
1060 ;; Returns a symbol telling how TeX would treat
1061 ;; the whitespace we are looking at: null, space, or par.
1062 (let ((category 'null)
1063 (not-finished t))
1064 (skip-chars-backward " \t\n\f" backward-limit)
1065 (while not-finished
1066 (cond ((looking-at "[ \t]+")
1067 (goto-char (match-end 0))
2be5fefb 1068 (if (eq category 'null)
869bff31 1069 (setq category 'space)))
1070 ((looking-at "\n")
2be5fefb 1071 (cond ((eq category 'newline)
869bff31 1072 (setq category 'par)
1073 (setq not-finished nil))
1074 (t
1075 (setq category 'newline) ;a strictly internal state
1076 (goto-char (match-end 0)))))
1077 ((looking-at "\f+")
1078 (setq category 'par)
1079 (setq not-finished nil))
1080 (t
1081 (setq not-finished nil))))
1082 (skip-chars-forward " \t\n\f")
2be5fefb 1083 (if (eq category 'newline)
869bff31 1084 'space ;TeX doesn't distinguish
1085 category)))
1086
1087(defun tex-insert-quote (arg)
1088 "Insert the appropriate quote marks for TeX.
08348502
RS
1089Inserts the value of `tex-open-quote' (normally ``) or `tex-close-quote'
1090\(normally '') depending on the context. With prefix argument, always
869bff31 1091inserts \" characters."
528415e7 1092 (interactive "*P")
95a045bd
SM
1093 (if (or arg (memq (char-syntax (preceding-char)) '(?/ ?\\))
1094 (eq (get-text-property (point) 'face) 'tex-verbatim-face)
1095 (save-excursion
1096 (backward-char (length tex-open-quote))
1097 (when (or (looking-at (regexp-quote tex-open-quote))
1098 (looking-at (regexp-quote tex-close-quote)))
1099 (delete-char (length tex-open-quote))
1100 t)))
869bff31 1101 (self-insert-command (prefix-numeric-value arg))
95a045bd
SM
1102 (insert (if (memq (char-syntax (preceding-char)) '(?\( ?> ?\ ))
1103 tex-open-quote tex-close-quote))))
869bff31 1104
e6b0b773
MR
1105(defun tex-validate-buffer ()
1106 "Check current buffer for paragraphs containing mismatched braces or $s.
bbd93e41 1107Their positions are recorded in the buffer `*Occur*'.
e6b0b773
MR
1108To find a particular invalidity from `*Occur*', switch to that buffer
1109and type C-c C-c or click with mouse-2
1110on the line for the invalidity you want to see."
869bff31 1111 (interactive)
bbd93e41
RS
1112 (let ((buffer (current-buffer))
1113 (prevpos (point-min))
e6b0b773
MR
1114 (linenum nil)
1115 (num-matches 0))
bbd93e41
RS
1116 (with-output-to-temp-buffer "*Occur*"
1117 (princ "Mismatches:\n")
a3d80d4a 1118 (with-current-buffer standard-output
bbd93e41 1119 (occur-mode)
52ab062c
CW
1120 ;; This won't actually work...Really, this whole thing should
1121 ;; be rewritten instead of being a hack on top of occur.
1122 (setq occur-revert-arguments (list nil 0 (list buffer))))
bbd93e41
RS
1123 (save-excursion
1124 (goto-char (point-max))
52ab062c 1125 (while (and (not (bobp)))
710a0f53
KH
1126 (let ((end (point))
1127 prev-end)
bbd93e41 1128 ;; Scan the previous paragraph for invalidities.
710a0f53
KH
1129 (if (search-backward "\n\n" nil t)
1130 (progn
1131 (setq prev-end (point))
1132 (forward-char 2))
1133 (goto-char (setq prev-end (point-min))))
869bff31 1134 (or (tex-validate-region (point) end)
a3d80d4a 1135 (let* ((end (line-beginning-position 2))
bbd93e41
RS
1136 start tem)
1137 (beginning-of-line)
1138 (setq start (point))
1139 ;; Keep track of line number as we scan,
1140 ;; in a cumulative fashion.
1141 (if linenum
1142 (setq linenum (- linenum (count-lines prevpos (point))))
1143 (setq linenum (1+ (count-lines 1 start))))
1144 (setq prevpos (point))
bed1b0c8 1145 ;; Mention this mismatch in *Occur*.
bbd93e41 1146 ;; Since we scan from end of buffer to beginning,
e6b0b773 1147 ;; add each mismatch at the beginning of *Occur*.
bbd93e41
RS
1148 (save-excursion
1149 (setq tem (point-marker))
1150 (set-buffer standard-output)
1151 (goto-char (point-min))
1152 ;; Skip "Mismatches:" header line.
1153 (forward-line 1)
e6b0b773 1154 (setq num-matches (1+ num-matches))
bbd93e41 1155 (insert-buffer-substring buffer start end)
e6b0b773
MR
1156 (let (text-beg (text-end (point-marker)))
1157 (forward-char (- start end))
1158 (setq text-beg (point-marker))
1159 (insert (format "%3d: " linenum))
a865de85
EZ
1160 (add-text-properties
1161 text-beg (- text-end 1)
1162 '(mouse-face highlight
1163 help-echo "mouse-2: go to this invalidity"))
1598a961 1164 (put-text-property text-beg (- text-end 1)
52ab062c 1165 'occur-target tem)))))
710a0f53 1166 (goto-char prev-end))))
bdbd9606 1167 (with-current-buffer standard-output
003274a0
JPW
1168 (let ((no-matches (zerop num-matches)))
1169 (if no-matches
1170 (insert "None!\n"))
1171 (if (interactive-p)
f04232c3
JPW
1172 (message (cond (no-matches "No mismatches found")
1173 ((= num-matches 1) "1 mismatch found")
1174 (t "%d mismatches found"))
1175 num-matches)))))))
869bff31 1176
1177(defun tex-validate-region (start end)
1178 "Check for mismatched braces or $'s in region.
1179Returns t if no mismatches. Returns nil and moves point to suspect
1180area if a mismatch is found."
1181 (interactive "r")
1182 (let ((failure-point nil) (max-possible-sexps (- end start)))
1183 (save-excursion
1184 (condition-case ()
1185 (save-restriction
1186 (narrow-to-region start end)
2ed2806c 1187 ;; First check that the open and close parens balance in numbers.
869bff31 1188 (goto-char start)
e6b0b773 1189 (while (<= 0 (setq max-possible-sexps (1- max-possible-sexps)))
2ed2806c
KH
1190 (forward-sexp 1))
1191 ;; Now check that like matches like.
1192 (goto-char start)
35dccc62
SM
1193 (while (re-search-forward "\\s(" nil t)
1194 (save-excursion
1195 (let ((pos (match-beginning 0)))
1196 (goto-char pos)
2ed2806c 1197 (forward-sexp 1)
35dccc62
SM
1198 (or (eq (preceding-char) (cdr (syntax-after pos)))
1199 (eq (char-after pos) (cdr (syntax-after (1- (point)))))
1200 (error "Mismatched parentheses"))))))
869bff31 1201 (error
bed1b0c8
RS
1202 (skip-syntax-forward " .>")
1203 (setq failure-point (point)))))
bdbd9606
SM
1204 (if failure-point (goto-char failure-point))
1205 (not failure-point)))
869bff31 1206
1207(defun tex-terminate-paragraph (inhibit-validation)
1208 "Insert two newlines, breaking a paragraph for TeX.
81c735c0 1209Check for mismatched braces or $s in paragraph being terminated.
869bff31 1210A prefix arg inhibits the checking."
528415e7 1211 (interactive "*P")
869bff31 1212 (or inhibit-validation
1213 (save-excursion
1214 (tex-validate-region
bed1b0c8
RS
1215 (save-excursion
1216 (search-backward "\n\n" nil 'move)
1217 (point))
1218 (point)))
869bff31 1219 (message "Paragraph being closed appears to contain a mismatch"))
1220 (insert "\n\n"))
1221
7afecb99 1222(define-skeleton tex-insert-braces
869bff31 1223 "Make a pair of braces and be poised to type inside of them."
7afecb99
SM
1224 nil
1225 ?\{ _ ?})
869bff31 1226
9bd4f69c
RS
1227;; This function is used as the value of fill-nobreak-predicate
1228;; in LaTeX mode. Its job is to prevent line-breaking inside
1229;; of a \verb construct.
1230(defun latex-fill-nobreak-predicate ()
7afecb99
SM
1231 (save-excursion
1232 (skip-chars-backward " ")
1233 ;; Don't break after \ since `\ ' has special meaning.
1234 (or (and (not (bobp)) (memq (char-syntax (char-before)) '(?\\ ?/)))
1235 (let ((opoint (point))
1236 inside)
1237 (beginning-of-line)
1238 (while (re-search-forward "\\\\verb\\(.\\)" opoint t)
1239 (unless (re-search-forward (regexp-quote (match-string 1)) opoint t)
1240 (setq inside t)))
1241 inside))))
9bd4f69c 1242
53c4fe47
SM
1243(defvar latex-block-default "enumerate")
1244
8084f5d8 1245(defvar latex-block-args-alist
dd166d5f
SM
1246 '(("array" nil ?\{ (skeleton-read "Format: ") ?\})
1247 ("tabular" nil ?\{ (skeleton-read "Format: ") ?\})
1248 ("minipage" nil ?\{ (skeleton-read "Size: ") ?\})
1249 ("picture" nil ?\( (skeleton-read "SizeX,SizeY: ") ?\))
1250 ;; FIXME: This is right for Prosper, but not for seminar.
1251 ;; ("slide" nil ?\{ (skeleton-read "Title: ") ?\})
1252 )
8084f5d8
SM
1253 "Skeleton element to use for arguments to particular environments.
1254Every element of the list has the form (NAME . SKEL-ELEM) where NAME is
1255the name of the environment and SKEL-ELEM is an element to use in
1256a skeleton (see `skeleton-insert').")
1257
1258(defvar latex-block-body-alist
1259 '(("enumerate" nil '(latex-insert-item) > _)
1260 ("itemize" nil '(latex-insert-item) > _)
dd166d5f
SM
1261 ("table" nil "\\caption{" > (skeleton-read "Caption: ") "}" > \n
1262 '(if (and (boundp 'reftex-mode) reftex-mode) (reftex-label "table"))
1263 \n _)
1264 ("figure" nil > _ \n "\\caption{" > (skeleton-read "Caption: ") "}" > \n
1265 '(if (and (boundp 'reftex-mode) reftex-mode) (reftex-label "table"))))
8084f5d8
SM
1266 "Skeleton element to use for the body of particular environments.
1267Every element of the list has the form (NAME . SKEL-ELEM) where NAME is
1268the name of the environment and SKEL-ELEM is an element to use in
1269a skeleton (see `skeleton-insert').")
1270
15ca8de7 1271;; Like tex-insert-braces, but for LaTeX.
7afecb99
SM
1272(defalias 'tex-latex-block 'latex-insert-block)
1273(define-skeleton latex-insert-block
8a591d52 1274 "Create a matching pair of lines \\begin{NAME} and \\end{NAME} at point.
869bff31 1275Puts point on a blank line between them."
53c4fe47
SM
1276 (let ((choice (completing-read (format "LaTeX block name [%s]: "
1277 latex-block-default)
95a045bd 1278 (append latex-block-names
7afecb99 1279 latex-standard-block-names)
53c4fe47
SM
1280 nil nil nil nil latex-block-default)))
1281 (setq latex-block-default choice)
7afecb99 1282 (unless (or (member choice latex-standard-block-names)
53c4fe47
SM
1283 (member choice latex-block-names))
1284 ;; Remember new block names for later completion.
1285 (push choice latex-block-names))
1286 choice)
95a045bd 1287 \n "\\begin{" str "}"
8084f5d8 1288 (cdr (assoc str latex-block-args-alist))
dd166d5f
SM
1289 > \n (or (cdr (assoc str latex-block-body-alist)) '(nil > _))
1290 (unless (bolp) '\n)
95a045bd 1291 "\\end{" str "}" > \n)
53c4fe47 1292
ea590e1c
SM
1293(define-skeleton latex-insert-item
1294 "Insert a \item macro."
1295 nil
15ca8de7 1296 \n "\\item " >)
ea590e1c 1297
53c4fe47
SM
1298\f
1299;;;;
1300;;;; LaTeX syntax navigation
1301;;;;
869bff31 1302
5e56fb53
SM
1303(defmacro tex-search-noncomment (&rest body)
1304 "Execute BODY as long as it return non-nil and point is in a comment.
1305Return the value returned by the last execution of BODY."
1306 (declare (debug t))
1307 (let ((res-sym (make-symbol "result")))
1308 `(let (,res-sym)
1309 (while
1310 (and (setq ,res-sym (progn ,@body))
1311 (save-excursion (skip-chars-backward "^\n%") (not (bolp)))))
1312 ,res-sym)))
1313
869bff31 1314(defun tex-last-unended-begin ()
81c735c0 1315 "Leave point at the beginning of the last `\\begin{...}' that is unended."
95a045bd 1316 (condition-case nil
5e56fb53
SM
1317 (while (and (tex-search-noncomment
1318 (re-search-backward "\\\\\\(begin\\|end\\)\\s *{"))
95a045bd
SM
1319 (looking-at "\\\\end"))
1320 (tex-last-unended-begin))
1321 (search-failed (error "Couldn't find unended \\begin"))))
869bff31 1322
53c4fe47
SM
1323(defun tex-next-unmatched-end ()
1324 "Leave point at the end of the next `\\end' that is unended."
5e56fb53
SM
1325 (while (and (tex-search-noncomment
1326 (re-search-forward "\\\\\\(begin\\|end\\)\\s *{[^}]+}"))
ea590e1c
SM
1327 (save-excursion (goto-char (match-beginning 0))
1328 (looking-at "\\\\begin")))
53c4fe47
SM
1329 (tex-next-unmatched-end)))
1330
6a900cf1
ER
1331(defun tex-goto-last-unclosed-latex-block ()
1332 "Move point to the last unclosed \\begin{...}.
1333Mark is left at original location."
1334 (interactive)
1335 (let ((spot))
1336 (save-excursion
95a045bd 1337 (tex-last-unended-begin)
6a900cf1
ER
1338 (setq spot (point)))
1339 (push-mark)
1340 (goto-char spot)))
1341
53c4fe47
SM
1342(defun latex-backward-sexp-1 ()
1343 "Like (backward-sexp 1) but aware of multi-char elements."
1344 (let ((pos (point))
1345 (forward-sexp-function))
1346 (backward-sexp 1)
1347 (if (looking-at "\\\\begin\\>")
1348 (signal 'scan-error
1349 (list "Containing expression ends prematurely"
1350 (point) (prog1 (point) (goto-char pos))))
1351 (when (eq (char-after) ?{)
1352 (let ((newpos (point)))
1353 (when (ignore-errors (backward-sexp 1) t)
e67064e2
SM
1354 (if (or (looking-at "\\\\end\\>")
1355 ;; In case the \\ ends a verbatim section.
1356 (and (looking-at "end\\>") (eq (char-before) ?\\)))
53c4fe47
SM
1357 (tex-last-unended-begin)
1358 (goto-char newpos))))))))
1359
1360(defun latex-forward-sexp-1 ()
1361 "Like (forward-sexp 1) but aware of multi-char elements."
1362 (let ((pos (point))
1363 (forward-sexp-function))
1364 (forward-sexp 1)
1365 (let ((newpos (point)))
1366 (skip-syntax-backward "/w")
1367 (cond
1368 ((looking-at "\\\\end\\>")
1369 (signal 'scan-error
1370 (list "Containing expression ends prematurely"
1371 (point)
1372 (prog1
1373 (progn (ignore-errors (forward-sexp 2)) (point))
1374 (goto-char pos)))))
1375 ((looking-at "\\\\begin\\>")
1376 (goto-char (match-end 0))
1377 (tex-next-unmatched-end))
1378 (t (goto-char newpos))))))
1379
1380(defun latex-forward-sexp (&optional arg)
1381 "Like `forward-sexp' but aware of multi-char elements."
1382 (interactive "P")
1383 (unless arg (setq arg 1))
1384 (let ((pos (point)))
1385 (condition-case err
1386 (while (/= arg 0)
1387 (setq arg
1388 (if (> arg 0)
1389 (progn (latex-forward-sexp-1) (1- arg))
1390 (progn (latex-backward-sexp-1) (1+ arg)))))
1391 (scan-error
1392 (goto-char pos)
1393 (signal (car err) (cdr err))))))
1394
ea590e1c
SM
1395(defun latex-syntax-after ()
1396 "Like (char-syntax (char-after)) but aware of multi-char elements."
15ca8de7 1397 (if (looking-at "\\\\end\\>") ?\) (char-syntax (following-char))))
ea590e1c
SM
1398
1399(defun latex-skip-close-parens ()
1400 "Like (skip-syntax-forward \" )\") but aware of multi-char elements."
1401 (let ((forward-sexp-function nil))
1402 (while (progn (skip-syntax-forward " )")
1403 (looking-at "\\\\end\\>"))
1404 (forward-sexp 2))))
1405
1406(defun latex-down-list ()
1407 "Like (down-list 1) but aware of multi-char elements."
1408 (forward-comment (point-max))
1409 (let ((forward-sexp-function nil))
1410 (if (not (looking-at "\\\\begin\\>"))
1411 (down-list 1)
1412 (forward-sexp 1)
1413 ;; Skip arguments.
7afecb99
SM
1414 (while (looking-at "[ \t]*[[{(]")
1415 (with-syntax-table tex-mode-syntax-table
1416 (forward-sexp))))))
ea590e1c 1417
7afecb99
SM
1418(defalias 'tex-close-latex-block 'latex-close-block)
1419(define-skeleton latex-close-block
1420 "Create an \\end{...} to match the last unclosed \\begin{...}."
1421 (save-excursion
1422 (tex-last-unended-begin)
1423 (if (not (looking-at "\\\\begin\\(\\s *{[^}\n]*}\\)")) '("{" _ "}")
1424 (match-string 1)))
1425 \n "\\end" str > \n)
1426
1427(define-skeleton latex-split-block
1428 "Split the enclosing environment by inserting \\end{..}\\begin{..} at point."
1429 (save-excursion
1430 (tex-last-unended-begin)
1431 (if (not (looking-at "\\\\begin\\(\\s *{[^}\n]*}\\)")) '("{" _ "}")
1432 (prog1 (match-string 1)
1433 (goto-char (match-end 1))
1434 (setq v1 (buffer-substring (point)
1435 (progn
1436 (while (looking-at "[ \t]*[[{]")
1437 (forward-sexp 1))
1438 (point)))))))
1439 \n "\\end" str > \n _ \n "\\begin" str v1 > \n)
15ca8de7
SM
1440
1441(defconst tex-discount-args-cmds
1442 '("begin" "end" "input" "special" "cite" "ref" "include" "includeonly"
1443 "documentclass" "usepackage" "label")
1444 "TeX commands whose arguments should not be counted as text.")
1445
1446(defun tex-count-words (begin end)
1447 "Count the number of words in the buffer."
1448 (interactive
1449 (if (and transient-mark-mode mark-active)
1450 (list (region-beginning) (region-end))
1451 (list (point-min) (point-max))))
1452 ;; TODO: skip comments and math and maybe some environments.
1453 (save-excursion
1454 (goto-char begin)
1455 (let ((count 0))
1456 (while (and (< (point) end) (re-search-forward "\\<" end t))
1457 (if (not (eq (char-syntax (preceding-char)) ?/))
1458 (progn
1459 ;; Don't count single-char words.
1460 (unless (looking-at ".\\>") (incf count))
1461 (forward-char 1))
1462 (let ((cmd
1463 (buffer-substring-no-properties
1464 (point) (progn (when (zerop (skip-chars-forward "a-zA-Z@"))
1465 (forward-char 1))
1466 (point)))))
1467 (when (member cmd tex-discount-args-cmds)
1468 (skip-chars-forward "*")
1469 (forward-comment (point-max))
1470 (when (looking-at "\\[")
1471 (forward-sexp 1)
1472 (forward-comment (point-max)))
1473 (if (not (looking-at "{"))
1474 (forward-char 1)
1475 (forward-sexp 1))))))
1476 (message "%s words" count))))
b781e739
SS
1477
1478
869bff31 1479\f
1480;;; Invoking TeX in an inferior shell.
1481
15ca8de7
SM
1482;; Why use a shell instead of running TeX directly? Because if TeX
1483;; gets stuck, the user can switch to the shell window and type at it.
869bff31 1484
15ca8de7 1485;; The utility functions:
869bff31 1486
bdbd9606 1487(define-derived-mode tex-shell shell-mode "TeX-Shell"
3f2c97ea
SM
1488 (set (make-local-variable 'compilation-parse-errors-function)
1489 'tex-compilation-parse-errors)
bdbd9606
SM
1490 (compilation-shell-minor-mode t))
1491
d974af30 1492;;;###autoload
869bff31 1493(defun tex-start-shell ()
d6709b80
SM
1494 (with-current-buffer
1495 (make-comint
1496 "tex-shell"
07c16ec4 1497 (or tex-shell-file-name (getenv "ESHELL") shell-file-name)
4042dc25 1498 nil
053be11a 1499 ;; Specify an interactive shell, to make sure it prompts.
4042dc25 1500 "-i")
528415e7
RS
1501 (let ((proc (get-process "tex-shell")))
1502 (set-process-sentinel proc 'tex-shell-sentinel)
003274a0 1503 (set-process-query-on-exit-flag proc nil)
bdbd9606 1504 (tex-shell)
528415e7 1505 (while (zerop (buffer-size))
51b2c841
RS
1506 (sleep-for 1)))))
1507
033306e3
RS
1508(defun tex-feed-input ()
1509 "Send input to the tex shell process.
1510In the tex buffer this can be used to continue an interactive tex run.
bed1b0c8 1511In the tex shell buffer this command behaves like `comint-send-input'."
033306e3 1512 (interactive)
b781e739 1513 (set-buffer (tex-shell-buf))
033306e3
RS
1514 (comint-send-input)
1515 (tex-recenter-output-buffer nil))
1516
51b2c841
RS
1517(defun tex-display-shell ()
1518 "Make the TeX shell buffer visible in a window."
b781e739 1519 (display-buffer (tex-shell-buf))
51b2c841 1520 (tex-recenter-output-buffer nil))
528415e7
RS
1521
1522(defun tex-shell-sentinel (proc msg)
1523 (cond ((null (buffer-name (process-buffer proc)))
1524 ;; buffer killed
1525 (set-process-buffer proc nil)
1526 (tex-delete-last-temp-files))
1527 ((memq (process-status proc) '(signal exit))
1528 (tex-delete-last-temp-files))))
1529
1530(defun tex-set-buffer-directory (buffer directory)
869bff31 1531 "Set BUFFER's default directory to be DIRECTORY."
1532 (setq directory (file-name-as-directory (expand-file-name directory)))
1533 (if (not (file-directory-p directory))
1534 (error "%s is not a directory" directory)
1535 (save-excursion
1536 (set-buffer buffer)
1537 (setq default-directory directory))))
1538
30803a05
RS
1539(defvar tex-send-command-modified-tick 0)
1540(make-variable-buffer-local 'tex-send-command-modified-tick)
1541
bdbd9606 1542(defun tex-shell-proc ()
b781e739 1543 (or (tex-shell-running) (error "No TeX subprocess")))
bdbd9606
SM
1544(defun tex-shell-buf ()
1545 (process-buffer (tex-shell-proc)))
b781e739
SS
1546(defun tex-shell-buf-no-error ()
1547 (let ((proc (tex-shell-running)))
1548 (and proc (process-buffer proc))))
bdbd9606 1549
528415e7 1550(defun tex-send-command (command &optional file background)
4cdc1d4b 1551 "Send COMMAND to TeX shell process, substituting optional FILE for *.
8241d7b9
ER
1552Do this in background if optional BACKGROUND is t. If COMMAND has no *,
1553FILE will be appended, preceded by a blank, to COMMAND. If FILE is nil, no
1554substitution will be made in COMMAND. COMMAND can be any expression that
460e1b7d
RS
1555evaluates to a command string.
1556
1557Return the process in which TeX is running."
528415e7
RS
1558 (save-excursion
1559 (let* ((cmd (eval command))
bdbd9606 1560 (proc (tex-shell-proc))
64db2461 1561 (buf (process-buffer proc))
4f45adda 1562 (star (string-match "\\*" cmd))
4cdc1d4b
RS
1563 (string
1564 (concat
1565 (if file
1566 (if star (concat (substring cmd 0 star)
1567 file (substring cmd (1+ star)))
1568 (concat cmd " " file))
1569 cmd)
1570 (if background "&" ""))))
64db2461
RS
1571 ;; Switch to buffer before checking for subproc output in it.
1572 (set-buffer buf)
30803a05
RS
1573 ;; If text is unchanged since previous tex-send-command,
1574 ;; we haven't got any output. So wait for output now.
64db2461 1575 (if (= (buffer-modified-tick buf) tex-send-command-modified-tick)
30803a05 1576 (accept-process-output proc))
4cdc1d4b
RS
1577 (goto-char (process-mark proc))
1578 (insert string)
30803a05 1579 (comint-send-input)
460e1b7d
RS
1580 (setq tex-send-command-modified-tick (buffer-modified-tick buf))
1581 proc)))
528415e7 1582
a15849cb
RS
1583(defun tex-delete-last-temp-files (&optional not-all)
1584 "Delete any junk files from last temp file.
1585If NOT-ALL is non-nil, save the `.dvi' file."
528415e7
RS
1586 (if tex-last-temp-file
1587 (let* ((dir (file-name-directory tex-last-temp-file))
adf6b7f9
KH
1588 (list (and (file-directory-p dir)
1589 (file-name-all-completions
02fd229c
RS
1590 (file-name-sans-extension
1591 (file-name-nondirectory tex-last-temp-file))
1592 dir))))
adf6b7f9 1593 (while list
a15849cb
RS
1594 (if not-all
1595 (and
1596 ;; If arg is non-nil, don't delete the .dvi file.
1597 (not (string-match "\\.dvi$" (car list)))
1598 (delete-file (concat dir (car list))))
1599 (delete-file (concat dir (car list))))
528415e7
RS
1600 (setq list (cdr list))))))
1601
99621a14 1602(add-hook 'kill-emacs-hook 'tex-delete-last-temp-files)
869bff31 1603
75035a80
SM
1604;;
1605;; Machinery to guess the command that the user wants to execute.
1606;;
1607
1608(defvar tex-compile-history nil)
1609
1610(defvar tex-input-files-re
1611 (eval-when-compile
1612 (concat "\\." (regexp-opt '("tex" "texi" "texinfo"
1613 "bbl" "ind" "sty" "cls") t)
1614 ;; Include files with no dots (for directories).
1615 "\\'\\|\\`[^.]+\\'")))
1616
1617(defcustom tex-use-reftex t
1618 "If non-nil, use RefTeX's list of files to determine what command to use."
1619 :type 'boolean)
1620
1621(defvar tex-compile-commands
1622 '(((concat "pdf" tex-command
bf4ec222
SM
1623 " " (if (< 0 (length tex-start-commands))
1624 (shell-quote-argument tex-start-commands)) " %f")
75035a80
SM
1625 t "%r.pdf")
1626 ((concat tex-command
bf4ec222
SM
1627 " " (if (< 0 (length tex-start-commands))
1628 (shell-quote-argument tex-start-commands)) " %f")
75035a80 1629 t "%r.dvi")
e70ff1af 1630 ("yap %r &" "%r.dvi")
75035a80
SM
1631 ("xdvi %r &" "%r.dvi")
1632 ("advi %r &" "%r.dvi")
1633 ("bibtex %r" "%r.aux" "%r.bbl")
1634 ("makeindex %r" "%r.idx" "%r.ind")
1635 ("texindex %r.??")
1636 ("dvipdfm %r" "%r.dvi" "%r.pdf")
1637 ("dvipdf %r" "%r.dvi" "%r.pdf")
dd166d5f 1638 ("dvips -o %r.ps %r" "%r.dvi" "%r.ps")
e70ff1af 1639 ("ps2pdf %r.ps" "%r.ps" "%r.pdf")
75035a80
SM
1640 ("gv %r.ps &" "%r.ps")
1641 ("gv %r.pdf &" "%r.pdf")
1642 ("xpdf %r.pdf &" "%r.pdf")
1643 ("lpr %r.ps" "%r.ps"))
1644 "List of commands for `tex-compile'.
1645Each element should be of the form (FORMAT IN OUT) where
1646FORMAT is an expression that evaluates to a string that can contain
1647 - `%r' the main file name without extension.
1648 - `%f' the main file name.
1649IN can be either a string (with the same % escapes in it) indicating
1650 the name of the input file, or t to indicate that the input is all
1651 the TeX files of the document, or nil if we don't know.
1652OUT describes the output file and is either a %-escaped string
1653 or nil to indicate that there is no output file.")
1654
8084f5d8
SM
1655;; defsubst* gives better byte-code than defsubst.
1656(defsubst* tex-string-prefix-p (str1 str2)
1657 "Return non-nil if STR1 is a prefix of STR2"
1658 (eq t (compare-strings str2 nil (length str1) str1 nil nil)))
1659
dd459839
SM
1660(defun tex-guess-main-file (&optional all)
1661 "Find a likely `tex-main-file'.
1662Looks for hints in other buffers in the same directory or in
8084f5d8
SM
1663ALL other buffers. If ALL is `sub' only look at buffers in parent directories
1664of the current buffer."
dd459839
SM
1665 (let ((dir default-directory)
1666 (header-re tex-start-of-header))
1667 (catch 'found
1668 ;; Look for a buffer with `tex-main-file' set.
1669 (dolist (buf (if (consp all) all (buffer-list)))
1670 (with-current-buffer buf
8084f5d8
SM
1671 (when (and (cond
1672 ((null all) (equal dir default-directory))
1673 ((eq all 'sub) (tex-string-prefix-p default-directory dir))
1674 (t))
dd459839
SM
1675 (stringp tex-main-file))
1676 (throw 'found (expand-file-name tex-main-file)))))
1677 ;; Look for a buffer containing the magic `tex-start-of-header'.
1678 (dolist (buf (if (consp all) all (buffer-list)))
1679 (with-current-buffer buf
8084f5d8
SM
1680 (when (and (cond
1681 ((null all) (equal dir default-directory))
1682 ((eq all 'sub) (tex-string-prefix-p default-directory dir))
1683 (t))
dd459839
SM
1684 buffer-file-name
1685 ;; (or (easy-mmode-derived-mode-p 'latex-mode)
1686 ;; (easy-mmode-derived-mode-p 'plain-tex-mode))
1687 (save-excursion
cb30255a
SM
1688 (save-restriction
1689 (widen)
1690 (goto-char (point-min))
95a045bd
SM
1691 (re-search-forward
1692 header-re (+ (point) 10000) t))))
dd459839
SM
1693 (throw 'found (expand-file-name buffer-file-name))))))))
1694
07c16ec4
SM
1695(defun tex-main-file ()
1696 "Return the relative name of the main file."
bdbd9606
SM
1697 (let* ((file (or tex-main-file
1698 ;; Compatibility with AUCTeX.
96c0d9e9 1699 (with-no-warnings
034a48f4
MR
1700 (when (boundp 'TeX-master)
1701 (cond ((stringp TeX-master)
1702 (make-local-variable 'tex-main-file)
1703 (setq tex-main-file TeX-master))
1704 ((and (eq TeX-master t) buffer-file-name)
1705 (file-relative-name buffer-file-name)))))
bdbd9606
SM
1706 ;; Try to guess the main file.
1707 (if (not buffer-file-name)
1708 (error "Buffer is not associated with any file")
1709 (file-relative-name
1710 (if (save-excursion
1711 (goto-char (point-min))
95a045bd
SM
1712 (re-search-forward tex-start-of-header
1713 (+ (point) 10000) t))
bdbd9606
SM
1714 ;; This is the main file.
1715 buffer-file-name
1716 ;; This isn't the main file, let's try to find better,
1717 (or (tex-guess-main-file)
8084f5d8 1718 (tex-guess-main-file 'sub)
bdbd9606 1719 ;; (tex-guess-main-file t)
07c16ec4 1720 buffer-file-name)))))))
e70ff1af
SM
1721 (if (or (file-exists-p file) (string-match "\\.tex\\'" file))
1722 file (concat file ".tex"))))
dd459839 1723
75035a80
SM
1724(defun tex-summarize-command (cmd)
1725 (if (not (stringp cmd)) ""
1726 (mapconcat 'identity
1727 (mapcar (lambda (s) (car (split-string s)))
1728 (split-string cmd "\\s-*\\(?:;\\|&&\\)\\s-*"))
1729 "&")))
1730
1731(defun tex-uptodate-p (file)
1732 "Return non-nil if FILE is not uptodate w.r.t the document source files.
1733FILE is typically the output DVI or PDF file."
1734 ;; We should check all the files included !!!
1735 (and
1736 ;; Clearly, the target must exist.
1737 (file-exists-p file)
1738 ;; And the last run must not have asked for a rerun.
1739 ;; FIXME: this should check that the last run was done on the same file.
1740 (let ((buf (condition-case nil (tex-shell-buf) (error nil))))
1741 (when buf
1742 (with-current-buffer buf
1743 (save-excursion
1744 (goto-char (point-max))
1745 (and (re-search-backward
1746 "(see the transcript file for additional information)" nil t)
1747 (> (save-excursion
1748 (or (re-search-backward "\\[[0-9]+\\]" nil t)
1749 (point-min)))
1750 (save-excursion
1751 (or (re-search-backward "Rerun" nil t)
1752 (point-min)))))))))
1753 ;; And the input files must not have been changed in the meantime.
1754 (let ((files (if (and tex-use-reftex
1755 (fboundp 'reftex-scanning-info-available-p)
1756 (reftex-scanning-info-available-p))
1757 (reftex-all-document-files)
1758 (list (file-name-directory (expand-file-name file)))))
1759 (ignored-dirs-re
1760 (concat
1761 (regexp-opt
1762 (delq nil (mapcar (lambda (s) (if (eq (aref s (1- (length s))) ?/)
1763 (substring s 0 (1- (length s)))))
1764 completion-ignored-extensions))
1765 t) "\\'"))
1766 (uptodate t))
1767 (while (and files uptodate)
1768 (let ((f (pop files)))
e70ff1af
SM
1769 (if (and (file-directory-p f)
1770 ;; Avoid infinite loops.
1771 (not (file-symlink-p f)))
75035a80
SM
1772 (unless (string-match ignored-dirs-re f)
1773 (setq files (nconc
1774 (directory-files f t tex-input-files-re)
1775 files)))
1776 (when (file-newer-than-file-p f file)
1777 (setq uptodate nil)))))
1778 uptodate)))
1779
1780
1781(autoload 'format-spec "format-spec")
1782
1783(defvar tex-executable-cache nil)
1784(defun tex-executable-exists-p (name)
1785 "Like `executable-find' but with a cache."
1786 (let ((cache (assoc name tex-executable-cache)))
1787 (if cache (cdr cache)
1788 (let ((executable (executable-find name)))
1789 (push (cons name executable) tex-executable-cache)
1790 executable))))
1791
1792(defun tex-command-executable (cmd)
1793 (let ((s (if (stringp cmd) cmd (eval (car cmd)))))
1794 (substring s 0 (string-match "[ \t]\\|\\'" s))))
1795
1796(defun tex-command-active-p (cmd fspec)
1797 "Return non-nil if the CMD spec might need to be run."
1798 (let ((in (nth 1 cmd))
1799 (out (nth 2 cmd)))
1800 (if (stringp in)
1801 (let ((file (format-spec in fspec)))
1802 (when (file-exists-p file)
1803 (or (not out)
1804 (file-newer-than-file-p
1805 file (format-spec out fspec)))))
1806 (when (and (eq in t) (stringp out))
1807 (not (tex-uptodate-p (format-spec out fspec)))))))
1808
8084f5d8 1809(defun tex-compile-default (fspec)
dd166d5f 1810 "Guess a default command given the `format-spec' FSPEC."
75035a80
SM
1811 ;; TODO: Learn to do latex+dvips!
1812 (let ((cmds nil)
1813 (unchanged-in nil))
1814 ;; Only consider active commands.
1815 (dolist (cmd tex-compile-commands)
1816 (when (tex-executable-exists-p (tex-command-executable cmd))
1817 (if (tex-command-active-p cmd fspec)
1818 (push cmd cmds)
1819 (push (nth 1 cmd) unchanged-in))))
dd166d5f
SM
1820 ;; If no command seems to be applicable, arbitrarily pick the first one.
1821 (unless cmds
1822 (setq cmds (list (car tex-compile-commands))))
75035a80
SM
1823 ;; Remove those commands whose input was considered stable for
1824 ;; some other command (typically if (t . "%.pdf") is inactive
1825 ;; then we're using pdflatex and the fact that the dvi file
1826 ;; is inexistent doesn't matter).
1827 (let ((tmp nil))
1828 (dolist (cmd cmds)
1829 (unless (member (nth 1 cmd) unchanged-in)
1830 (push cmd tmp)))
8084f5d8 1831 ;; Only remove if there's something left.
75035a80 1832 (if tmp (setq cmds tmp)))
8084f5d8
SM
1833 ;; Remove commands whose input is not uptodate either.
1834 (let ((outs (delq nil (mapcar (lambda (x) (nth 2 x)) cmds)))
1835 (tmp nil))
1836 (dolist (cmd cmds)
75035a80 1837 (unless (member (nth 1 cmd) outs)
8084f5d8
SM
1838 (push cmd tmp)))
1839 ;; Only remove if there's something left.
1840 (if tmp (setq cmds tmp)))
75035a80
SM
1841 ;; Select which file we're going to operate on (the latest).
1842 (let ((latest (nth 1 (car cmds))))
1843 (dolist (cmd (prog1 (cdr cmds) (setq cmds (list (car cmds)))))
1844 (if (equal latest (nth 1 cmd))
1845 (push cmd cmds)
1846 (unless (eq latest t) ;Can't beat that!
1847 (if (or (not (stringp latest))
1848 (eq (nth 1 cmd) t)
1849 (and (stringp (nth 1 cmd))
1850 (file-newer-than-file-p
1851 (format-spec (nth 1 cmd) fspec)
1852 (format-spec latest fspec))))
1853 (setq latest (nth 1 cmd) cmds (list cmd)))))))
1854 ;; Expand the command spec into the actual text.
1855 (dolist (cmd (prog1 cmds (setq cmds nil)))
1856 (push (cons (eval (car cmd)) (cdr cmd)) cmds))
1857 ;; Select the favorite command from the history.
1858 (let ((hist tex-compile-history)
8084f5d8 1859 re hist-cmd)
75035a80 1860 (while hist
8084f5d8 1861 (setq hist-cmd (pop hist))
75035a80 1862 (setq re (concat "\\`"
8084f5d8 1863 (regexp-quote (tex-command-executable hist-cmd))
75035a80
SM
1864 "\\([ \t]\\|\\'\\)"))
1865 (dolist (cmd cmds)
8084f5d8
SM
1866 ;; If the hist entry uses the same command and applies to a file
1867 ;; of the same type (e.g. `gv %r.pdf' vs `gv %r.ps'), select cmd.
1868 (and (string-match re (car cmd))
1869 (or (not (string-match "%[fr]\\([-._[:alnum:]]+\\)" (car cmd)))
1870 (string-match (regexp-quote (match-string 1 (car cmd)))
1871 hist-cmd))
1872 (setq hist nil cmds (list cmd)))))
1873 ;; Substitute and return.
1874 (if (and hist-cmd
1875 (string-match (concat "[' \t\"]" (format-spec "%r" fspec)
1876 "\\([;&' \t\"]\\|\\'\\)") hist-cmd))
1877 ;; The history command was already applied to the same file,
1878 ;; so just reuse it.
1879 hist-cmd
1880 (if cmds (format-spec (caar cmds) fspec))))))
75035a80
SM
1881
1882(defun tex-compile (dir cmd)
1883 "Run a command CMD on current TeX buffer's file in DIR."
1884 ;; FIXME: Use time-stamps on files to decide the next op.
1885 (interactive
1886 (let* ((file (tex-main-file))
5e56fb53
SM
1887 (default-directory
1888 (prog1 (file-name-directory (expand-file-name file))
1889 (setq file (file-name-nondirectory file))))
75035a80 1890 (root (file-name-sans-extension file))
75035a80
SM
1891 (fspec (list (cons ?r (comint-quote-filename root))
1892 (cons ?f (comint-quote-filename file))))
8084f5d8 1893 (default (tex-compile-default fspec)))
5e56fb53 1894 (list default-directory
75035a80
SM
1895 (completing-read
1896 (format "Command [%s]: " (tex-summarize-command default))
1897 (mapcar (lambda (x)
1898 (list (format-spec (eval (car x)) fspec)))
1899 tex-compile-commands)
1900 nil nil nil 'tex-compile-history default))))
1901 (save-some-buffers (not compilation-ask-about-save) nil)
1902 (if (tex-shell-running)
1903 (tex-kill-job)
1904 (tex-start-shell))
1905 (tex-send-tex-command cmd dir))
d6709b80
SM
1906
1907(defun tex-start-tex (command file &optional dir)
460e1b7d 1908 "Start a TeX run, using COMMAND on FILE."
6633b891 1909 (let* ((star (string-match "\\*" command))
460e1b7d 1910 (compile-command
6633b891
KH
1911 (if star
1912 (concat (substring command 0 star)
1913 (comint-quote-filename file)
1914 (substring command (1+ star)))
1915 (concat command " "
95a045bd 1916 tex-start-options
9e0ad27a 1917 (if (< 0 (length tex-start-commands))
c3ce7bf4 1918 (concat
9e0ad27a 1919 (shell-quote-argument tex-start-commands) " "))
6633b891 1920 (comint-quote-filename file)))))
bdbd9606
SM
1921 (tex-send-tex-command compile-command dir)))
1922
1923(defun tex-send-tex-command (cmd &optional dir)
b781e739
SS
1924 (unless (or (equal dir (let ((buf (tex-shell-buf-no-error)))
1925 (and buf (with-current-buffer buf
1926 default-directory))))
bdbd9606
SM
1927 (not dir))
1928 (let (shell-dirtrack-verbose)
1929 (tex-send-command tex-shell-cd-command dir)))
1930 (with-current-buffer (process-buffer (tex-send-command cmd))
bdbd9606
SM
1931 (setq compilation-last-buffer (current-buffer))
1932 (compilation-forget-errors)
1598a961 1933 ;; Don't parse previous compilations.
bdbd9606
SM
1934 (set-marker compilation-parsing-end (1- (point-max))))
1935 (tex-display-shell)
1936 (setq tex-last-buffer-texed (current-buffer)))
460e1b7d 1937\f
1598a961
SM
1938(defvar tex-error-parse-syntax-table
1939 (let ((st (make-syntax-table)))
1940 (modify-syntax-entry ?\( "()" st)
1941 (modify-syntax-entry ?\) ")(" st)
1942 (modify-syntax-entry ?\\ "\\" st)
1943 (modify-syntax-entry ?\{ "_" st)
1944 (modify-syntax-entry ?\} "_" st)
1945 (modify-syntax-entry ?\[ "_" st)
1946 (modify-syntax-entry ?\] "_" st)
1947 ;; Single quotations may appear in errors
1948 (modify-syntax-entry ?\" "_" st)
1949 st)
1950 "Syntax-table used while parsing TeX error messages.")
1951
460e1b7d 1952(defun tex-compilation-parse-errors (limit-search find-at-least)
f05bd645
RS
1953 "Parse the current buffer as TeX error messages.
1954See the variable `compilation-parse-errors-function' for the interface it uses.
1955
1956This function parses only the last TeX compilation.
1957It works on TeX compilations only. It is necessary for that purpose,
1958since TeX does not put file names and line numbers on the same line as
1959for the error messages."
460e1b7d
RS
1960 (require 'thingatpt)
1961 (setq compilation-error-list nil)
f05bd645
RS
1962 (let ((default-directory ; Perhaps dir has changed meanwhile.
1963 (file-name-directory (buffer-file-name tex-last-buffer-texed)))
f05bd645
RS
1964 found-desired (num-errors-found 0)
1965 last-filename last-linenum last-position
1966 begin-of-error end-of-error)
f05bd645
RS
1967 ;; Don't reparse messages already seen at last parse.
1968 (goto-char compilation-parsing-end)
1969 ;; Parse messages.
1970 (while (and (not (or found-desired (eobp)))
1971 (prog1 (re-search-forward "^! " nil 'move)
1972 (setq begin-of-error (match-beginning 0)
1973 end-of-error (match-end 0)))
1974 (re-search-forward
1975 "^l\\.\\([0-9]+\\) \\(\\.\\.\\.\\)?\\(.*\\)$" nil 'move))
3f2c97ea 1976 (let* ((this-error (copy-marker begin-of-error))
003274a0 1977 (linenum (string-to-number (match-string 1)))
f05bd645
RS
1978 (error-text (regexp-quote (match-string 3)))
1979 (filename
1980 (save-excursion
ea590e1c
SM
1981 (with-syntax-table tex-error-parse-syntax-table
1982 (backward-up-list 1)
1983 (skip-syntax-forward "(_")
1984 (while (not (file-readable-p (thing-at-point 'filename)))
1985 (skip-syntax-backward "(_")
1986 (backward-up-list 1)
1987 (skip-syntax-forward "(_"))
1988 (thing-at-point 'filename))))
f05bd645
RS
1989 (new-file
1990 (or (null last-filename)
1991 (not (string-equal last-filename filename))))
1992 (error-location
cc9f5376
SM
1993 (with-current-buffer
1994 (if (equal filename (concat tex-zap-file ".tex"))
1995 tex-last-buffer-texed
1996 (find-file-noselect filename))
1997 (save-excursion
1998 (if new-file
1999 (progn (goto-line linenum) (setq last-position nil))
2000 (goto-char last-position)
2001 (forward-line (- linenum last-linenum)))
2002 ;; first try a forward search for the error text,
2003 ;; then a backward search limited by the last error.
2004 (let ((starting-point (point)))
2005 (or (re-search-forward error-text nil t)
2006 (re-search-backward error-text last-position t)
2007 (goto-char starting-point)))
2008 (point-marker)))))
f05bd645
RS
2009 (goto-char this-error)
2010 (if (and compilation-error-list
2011 (or (and find-at-least
2012 (>= num-errors-found
2013 find-at-least))
2014 (and limit-search
2015 (>= end-of-error limit-search)))
2016 new-file)
2017 (setq found-desired t)
2018 (setq num-errors-found (1+ num-errors-found)
2019 last-filename filename
2020 last-linenum linenum
2021 last-position error-location
2022 compilation-error-list ; Add the new error
2023 (cons (cons this-error error-location)
2024 compilation-error-list))
2025 (goto-char end-of-error)))))
ee13a145 2026 (set-marker compilation-parsing-end (point))
13376c78 2027 (setq compilation-error-list (nreverse compilation-error-list)))
460e1b7d 2028\f
528415e7 2029;;; The commands:
869bff31 2030
2031(defun tex-region (beg end)
2032 "Run TeX on the current region, via a temporary file.
2033The file's name comes from the variable `tex-zap-file' and the
2034variable `tex-directory' says where to put it.
2035
2036If the buffer has a header, the header is given to TeX before the
2037region itself. The buffer's header is all lines between the strings
2038defined by `tex-start-of-header' and `tex-end-of-header' inclusive.
2039The header must start in the first 100 lines of the buffer.
2040
2041The value of `tex-trailer' is given to TeX as input after the region.
2042
2043The value of `tex-command' specifies the command to use to run TeX."
2044 (interactive "r")
2045 (if (tex-shell-running)
2046 (tex-kill-job)
2047 (tex-start-shell))
2048 (or tex-zap-file
2049 (setq tex-zap-file (tex-generate-zap-file-name)))
6d34c59f
RS
2050 ;; Temp file will be written and TeX will be run in zap-directory.
2051 ;; If the TEXINPUTS file has relative directories or if the region has
2052 ;; \input of files, this must be the same directory as the file for
2053 ;; TeX to access the correct inputs. That's why it's safest if
2054 ;; tex-directory is ".".
2055 (let* ((zap-directory
528415e7 2056 (file-name-as-directory (expand-file-name tex-directory)))
d6709b80
SM
2057 (tex-out-file (expand-file-name (concat tex-zap-file ".tex")
2058 zap-directory)))
0d548e5d
RS
2059 ;; Don't delete temp files if we do the same buffer twice in a row.
2060 (or (eq (current-buffer) tex-last-buffer-texed)
2061 (tex-delete-last-temp-files t))
869bff31 2062 ;; Write the new temp file.
2063 (save-excursion
2064 (save-restriction
2065 (widen)
2066 (goto-char (point-min))
2067 (forward-line 100)
2068 (let ((search-end (point))
6d34c59f
RS
2069 (default-directory zap-directory)
2070 (already-output 0))
869bff31 2071 (goto-char (point-min))
6d34c59f 2072
725b7428
RS
2073 ;; Maybe copy first line, such as `\input texinfo', to temp file.
2074 (and tex-first-line-header-regexp
2075 (looking-at tex-first-line-header-regexp)
bed1b0c8 2076 (write-region (point)
6d34c59f
RS
2077 (progn (forward-line 1)
2078 (setq already-output (point)))
725b7428
RS
2079 tex-out-file nil nil))
2080
6d34c59f
RS
2081 ;; Write out the header, if there is one,
2082 ;; and any of the specified region which extends before it.
2083 ;; But don't repeat anything already written.
898b9ac1 2084 (if (re-search-forward tex-start-of-header search-end t)
6d34c59f 2085 (let (hbeg)
869bff31 2086 (beginning-of-line)
2087 (setq hbeg (point)) ;mark beginning of header
898b9ac1 2088 (if (re-search-forward tex-end-of-header nil t)
6d34c59f
RS
2089 (let (hend)
2090 (forward-line 1)
bed1b0c8 2091 (setq hend (point)) ;mark end of header
6d34c59f
RS
2092 (write-region (max (min hbeg beg) already-output)
2093 hend
2094 tex-out-file
2095 (not (zerop already-output)) nil)
2096 (setq already-output hend)))))
2097
2098 ;; Write out the specified region
2099 ;; (but don't repeat anything already written).
2100 (write-region (max beg already-output) end
2101 tex-out-file
2102 (not (zerop already-output)) nil))
2103 ;; Write the trailer, if any.
2104 ;; Precede it with a newline to make sure it
2105 ;; is not hidden in a comment.
2106 (if tex-trailer
2107 (write-region (concat "\n" tex-trailer) nil
2108 tex-out-file t nil))))
528415e7
RS
2109 ;; Record the file name to be deleted afterward.
2110 (setq tex-last-temp-file tex-out-file)
f05bd645
RS
2111 ;; Use a relative file name here because (1) the proper dir
2112 ;; is already current, and (2) the abs file name is sometimes
2113 ;; too long and can make tex crash.
d6709b80
SM
2114 (tex-start-tex tex-command (concat tex-zap-file ".tex") zap-directory)
2115 (setq tex-print-file tex-out-file)))
869bff31 2116
2117(defun tex-buffer ()
2118 "Run TeX on current buffer. See \\[tex-region] for more information.
528415e7
RS
2119Does not save the buffer, so it's useful for trying experimental versions.
2120See \\[tex-file] for an alternative."
869bff31 2121 (interactive)
2122 (tex-region (point-min) (point-max)))
2123
2124(defun tex-file ()
2125 "Prompt to save all buffers and run TeX (or LaTeX) on current buffer's file.
2126This function is more useful than \\[tex-buffer] when you need the
2127`.aux' file of LaTeX to have the correct name."
2128 (interactive)
7abc9add
SS
2129 (when tex-offer-save
2130 (save-some-buffers))
d6709b80 2131 (let* ((source-file (tex-main-file))
07c16ec4 2132 (file-dir (file-name-directory (expand-file-name source-file))))
869bff31 2133 (if (tex-shell-running)
2134 (tex-kill-job)
2135 (tex-start-shell))
d6709b80 2136 (tex-start-tex tex-command source-file file-dir)
f05bd645 2137 (setq tex-print-file (expand-file-name source-file))))
869bff31 2138
2139(defun tex-generate-zap-file-name ()
2140 "Generate a unique name suitable for use as a file name."
2141 ;; Include the shell process number and host name
2142 ;; in case there are multiple shells (for same or different user).
f5cdb851
KH
2143 ;; Dec 1998: There is a report that some versions of xdvi
2144 ;; don't work with file names that start with #.
5616ee46 2145 (format "_TZ_%d-%s"
869bff31 2146 (process-id (get-buffer-process "*tex-shell*"))
07c16ec4 2147 (subst-char-in-string ?. ?- (system-name))))
869bff31 2148
2149;; This will perhaps be useful for modifying TEXINPUTS.
2150;; Expand each file name, separated by colons, in the string S.
2151(defun tex-expand-files (s)
2152 (let (elts (start 0))
2153 (while (string-match ":" s start)
2154 (setq elts (cons (substring s start (match-beginning 0)) elts))
2155 (setq start (match-end 0)))
2156 (or (= start 0)
2157 (setq elts (cons (substring s start) elts)))
c0df1972
SM
2158 (mapconcat (lambda (elt)
2159 (if (= (length elt) 0) elt (expand-file-name elt)))
5616ee46 2160 (nreverse elts) ":")))
869bff31 2161
2162(defun tex-shell-running ()
713f7b15 2163 (let ((proc (get-process "tex-shell")))
b781e739
SS
2164 (when proc
2165 (if (and (eq (process-status proc) 'run)
2166 (buffer-live-p (process-buffer proc)))
2167 ;; return the TeX process on success
2168 proc
2169 ;; get rid of the process permanently
2170 ;; this should get rid of the annoying w32 problem with
2171 ;; dead tex-shell buffer and live process
2172 (delete-process proc)))))
869bff31 2173
2174(defun tex-kill-job ()
2175 "Kill the currently running TeX job."
2176 (interactive)
b781e739 2177 ;; `quit-process' leads to core dumps of the tex process (except if
bed1b0c8
RS
2178 ;; coredumpsize has limit 0kb as on many environments). One would
2179 ;; like to use (kill-process proc 'lambda), however that construct
2180 ;; does not work on some systems and kills the shell itself.
b781e739
SS
2181 (let ((proc (get-process "tex-shell")))
2182 (when proc (quit-process proc t))))
869bff31 2183
2184(defun tex-recenter-output-buffer (linenum)
2185 "Redisplay buffer of TeX job output so that most recent output can be seen.
2186The last line of the buffer is displayed on
2187line LINE of the window, or centered if LINE is nil."
2188 (interactive "P")
2189 (let ((tex-shell (get-buffer "*tex-shell*"))
23b64225 2190 (window))
869bff31 2191 (if (null tex-shell)
2192 (message "No TeX output buffer")
23b64225
RS
2193 (setq window (display-buffer tex-shell))
2194 (save-selected-window
2195 (select-window window)
2196 (bury-buffer tex-shell)
2197 (goto-char (point-max))
2198 (recenter (if linenum
2199 (prefix-numeric-value linenum)
2200 (/ (window-height) 2)))))))
869bff31 2201
528415e7 2202(defun tex-print (&optional alt)
869bff31 2203 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
1433a222
CZ
2204Runs the shell command defined by `tex-dvi-print-command'. If prefix argument
2205is provided, use the alternative command, `tex-alt-dvi-print-command'."
528415e7 2206 (interactive "P")
869bff31 2207 (let ((print-file-name-dvi (tex-append tex-print-file ".dvi"))
2208 test-name)
2209 (if (and (not (equal (current-buffer) tex-last-buffer-texed))
45c3304d
RS
2210 (buffer-file-name)
2211 ;; Check that this buffer's printed file is up to date.
869bff31 2212 (file-newer-than-file-p
2213 (setq test-name (tex-append (buffer-file-name) ".dvi"))
45c3304d 2214 (buffer-file-name)))
869bff31 2215 (setq print-file-name-dvi test-name))
528415e7
RS
2216 (if (not (file-exists-p print-file-name-dvi))
2217 (error "No appropriate `.dvi' file could be found")
460e1b7d
RS
2218 (if (tex-shell-running)
2219 (tex-kill-job)
2220 (tex-start-shell))
528415e7 2221 (tex-send-command
bed1b0c8 2222 (if alt tex-alt-dvi-print-command tex-dvi-print-command)
602503c5
RS
2223 (shell-quote-argument
2224 print-file-name-dvi)
2225 t))))
869bff31 2226
cf6d6e8a
RS
2227(defun tex-alt-print ()
2228 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file].
002b0d00 2229Runs the shell command defined by `tex-alt-dvi-print-command'."
cf6d6e8a
RS
2230 (interactive)
2231 (tex-print t))
2232
869bff31 2233(defun tex-view ()
2234 "Preview the last `.dvi' file made by running TeX under Emacs.
2235This means, made using \\[tex-region], \\[tex-buffer] or \\[tex-file].
2b7971c9
RS
2236The variable `tex-dvi-view-command' specifies the shell command for preview.
2237You must set that variable yourself before using this command,
2238because there is no standard value that would generally work."
869bff31 2239 (interactive)
2b7971c9
RS
2240 (or tex-dvi-view-command
2241 (error "You must set `tex-dvi-view-command'"))
746c30e2 2242 (let ((tex-dvi-print-command (eval tex-dvi-view-command)))
869bff31 2243 (tex-print)))
2244
2245(defun tex-append (file-name suffix)
2246 "Append to FILENAME the suffix SUFFIX, using same algorithm TeX uses.
cf6d6e8a 2247Pascal-based TeX scans for the first period, C TeX uses the last.
869bff31 2248No period is retained immediately before SUFFIX,
2249so normally SUFFIX starts with one."
2250 (if (stringp file-name)
cf6d6e8a
RS
2251 (let ((file (file-name-nondirectory file-name))
2252 trial-name)
6da9bbd6 2253 ;; Try splitting on last period.
7d0ca249
RS
2254 ;; The first-period split can get fooled when two files
2255 ;; named a.tex and a.b.tex are both tex'd;
2256 ;; the last-period split must be right if it matches at all.
cf6d6e8a
RS
2257 (setq trial-name
2258 (concat (file-name-directory file-name)
2259 (substring file 0
7d0ca249 2260 (string-match "\\.[^.]*$" file))
cf6d6e8a
RS
2261 suffix))
2262 (if (or (file-exists-p trial-name)
2263 (file-exists-p (concat trial-name ".aux"))) ;for BibTeX files
2264 trial-name
7d0ca249 2265 ;; Not found, so split on first period.
cf6d6e8a
RS
2266 (concat (file-name-directory file-name)
2267 (substring file 0
7d0ca249 2268 (string-match "\\." file))
cf6d6e8a 2269 suffix)))
869bff31 2270 " "))
2271
2272(defun tex-show-print-queue ()
2273 "Show the print queue that \\[tex-print] put your job on.
1433a222 2274Runs the shell command defined by `tex-show-queue-command'."
869bff31 2275 (interactive)
2276 (if (tex-shell-running)
2277 (tex-kill-job)
2278 (tex-start-shell))
51b2c841
RS
2279 (tex-send-command tex-show-queue-command)
2280 (tex-display-shell))
869bff31 2281
2282(defun tex-bibtex-file ()
2283 "Run BibTeX on the current buffer's file."
2284 (interactive)
2285 (if (tex-shell-running)
2286 (tex-kill-job)
2287 (tex-start-shell))
e6b0b773
MR
2288 (let (shell-dirtrack-verbose
2289 (tex-out-file
869bff31 2290 (tex-append (file-name-nondirectory (buffer-file-name)) ""))
2291 (file-dir (file-name-directory (buffer-file-name))))
528415e7 2292 (tex-send-command tex-shell-cd-command file-dir)
51b2c841
RS
2293 (tex-send-command tex-bibtex-command tex-out-file))
2294 (tex-display-shell))
ea590e1c
SM
2295\f
2296;;;;
2297;;;; LaTeX indentation
2298;;;;
2299
2300(defvar tex-indent-allhanging t)
2301(defvar tex-indent-arg 4)
2302(defvar tex-indent-basic 2)
2303(defvar tex-indent-item tex-indent-basic)
2304(defvar tex-indent-item-re "\\\\\\(bib\\)?item\\>")
dd166d5f 2305(defvar latex-noindent-environments '("document"))
ea590e1c 2306
8a591d52
SM
2307(defvar tex-latex-indent-syntax-table
2308 (let ((st (make-syntax-table tex-mode-syntax-table)))
2309 (modify-syntax-entry ?$ "." st)
2310 (modify-syntax-entry ?\( "." st)
2311 (modify-syntax-entry ?\) "." st)
2312 st)
2313 "Syntax table used while computing indentation.")
ea590e1c
SM
2314
2315(defun latex-indent (&optional arg)
7afecb99
SM
2316 (if (and (eq (get-text-property (line-beginning-position) 'face)
2317 tex-verbatim-face))
a3d80d4a 2318 'noindent
7afecb99
SM
2319 (with-syntax-table tex-latex-indent-syntax-table
2320 ;; TODO: Rather than ignore $, we should try to be more clever about it.
2321 (let ((indent
2322 (save-excursion
2323 (beginning-of-line)
2324 (latex-find-indent))))
2325 (if (< indent 0) (setq indent 0))
2326 (if (<= (current-column) (current-indentation))
2327 (indent-line-to indent)
2328 (save-excursion (indent-line-to indent)))))))
ea590e1c
SM
2329
2330(defun latex-find-indent (&optional virtual)
2331 "Find the proper indentation of text after point.
2332VIRTUAL if non-nil indicates that we're only trying to find the indentation
2333 in order to determine the indentation of something else.
2334There might be text before point."
2335 (save-excursion
2336 (skip-chars-forward " \t")
2337 (or
7afecb99
SM
2338 ;; Stick the first line at column 0.
2339 (and (= (point-min) (line-beginning-position)) 0)
ea590e1c 2340 ;; Trust the current indentation, if such info is applicable.
7afecb99
SM
2341 (and virtual (save-excursion (skip-chars-backward " \t&") (bolp))
2342 (current-column))
2343 ;; Stick verbatim environments to the left margin.
2344 (and (looking-at "\\\\\\(begin\\|end\\) *{\\([^\n}]+\\)")
2345 (member (match-string 2) tex-verbatim-environments)
2346 0)
ea590e1c
SM
2347 ;; Put leading close-paren where the matching open brace would be.
2348 (and (eq (latex-syntax-after) ?\))
2349 (ignore-errors
2350 (save-excursion
2351 (latex-skip-close-parens)
2352 (latex-backward-sexp-1)
2353 (latex-find-indent 'virtual))))
2354 ;; Default (maybe an argument)
2355 (let ((pos (point))
ea590e1c
SM
2356 ;; Outdent \item if necessary.
2357 (indent (if (looking-at tex-indent-item-re) (- tex-indent-item) 0))
2358 up-list-pos)
2359 ;; Find the previous point which determines our current indentation.
2360 (condition-case err
2361 (progn
2362 (latex-backward-sexp-1)
2363 (while (> (current-column) (current-indentation))
2364 (latex-backward-sexp-1)))
2365 (scan-error
2366 (setq up-list-pos (nth 2 err))))
8908cf40
SM
2367 (cond
2368 ((= (point-min) pos) 0) ; We're really just indenting the first line.
2369 ((integerp up-list-pos)
2370 ;; Have to indent relative to the open-paren.
2371 (goto-char up-list-pos)
2372 (if (and (not tex-indent-allhanging)
dd166d5f
SM
2373 (save-excursion
2374 ;; Make sure we're an argument to a macro and
2375 ;; that the macro is at the beginning of a line.
2376 (condition-case nil
2377 (progn
2378 (while (eq (char-syntax (char-after)) ?\()
2379 (forward-sexp -1))
2380 (and (eq (char-syntax (char-after)) ?/)
2381 (progn (skip-chars-backward " \t&")
2382 (bolp))))
2383 (scan-error nil)))
8908cf40
SM
2384 (> pos (progn (latex-down-list)
2385 (forward-comment (point-max))
2386 (point))))
7afecb99 2387 ;; Align with the first element after the open-paren.
8908cf40
SM
2388 (current-column)
2389 ;; We're the first element after a hanging brace.
2390 (goto-char up-list-pos)
dd166d5f
SM
2391 (+ (if (and (looking-at "\\\\begin *{\\([^\n}]+\\)")
2392 (member (match-string 1)
2393 latex-noindent-environments))
2394 0 tex-indent-basic)
2395 indent (latex-find-indent 'virtual))))
8908cf40
SM
2396 ;; We're now at the "beginning" of a line.
2397 ((not (and (not virtual) (eq (char-after) ?\\)))
2398 ;; Nothing particular here: just keep the same indentation.
2399 (+ indent (current-column)))
2400 ;; We're now looking at a macro call.
dd166d5f
SM
2401 ((looking-at tex-indent-item-re)
2402 ;; Indenting relative to an item, have to re-add the outdenting.
8908cf40
SM
2403 (+ indent (current-column) tex-indent-item))
2404 (t
2405 (let ((col (current-column)))
dd166d5f
SM
2406 (if (or (not (eq (char-syntax (or (char-after pos) ?\ )) ?\())
2407 ;; Can't be an arg if there's an empty line inbetween.
2408 (save-excursion (re-search-forward "^[ \t]*$" pos t)))
8908cf40
SM
2409 ;; If the first char was not an open-paren, there's
2410 ;; a risk that this is really not an argument to the
2411 ;; macro at all.
21749f14
RS
2412 (+ indent col)
2413 (forward-sexp 1)
2414 (if (< (line-end-position)
2415 (save-excursion (forward-comment (point-max))
2416 (point)))
8908cf40
SM
2417 ;; we're indenting the first argument.
2418 (min (current-column) (+ tex-indent-arg col))
2419 (skip-syntax-forward " ")
2420 (current-column))))))))))
a3d80d4a
SM
2421;;; DocTeX support
2422
2423(defun doctex-font-lock-^^A ()
2424 (if (eq (char-after (line-beginning-position)) ?\%)
2425 (progn
2426 (put-text-property
2427 (1- (match-beginning 1)) (match-beginning 1)
2428 'syntax-table
2429 (if (= (1+ (line-beginning-position)) (match-beginning 1))
2430 ;; The `%' is a single-char comment, which Emacs
2431 ;; syntax-table can't deal with. We could turn it
2432 ;; into a non-comment, or use `\n%' or `%^' as the comment.
2433 ;; Instead, we include it in the ^^A comment.
2434 (eval-when-compile (string-to-syntax "< b"))
2435 (eval-when-compile (string-to-syntax ">"))))
2436 (let ((end (line-end-position)))
2437 (if (< end (point-max))
2438 (put-text-property
2439 end (1+ end)
2440 'syntax-table
2441 (eval-when-compile (string-to-syntax "> b")))))
2442 (eval-when-compile (string-to-syntax "< b")))))
2443
2444(defun doctex-font-lock-syntactic-face-function (state)
2445 ;; Mark DocTeX documentation, which is parsed as a style A comment
2446 ;; starting in column 0.
2447 (if (or (nth 3 state) (nth 7 state)
2448 (not (memq (char-before (nth 8 state))
2449 '(?\n nil))))
2450 ;; Anything else is just as for LaTeX.
2451 (tex-font-lock-syntactic-face-function state)
2452 font-lock-doc-face))
2453
2454(defvar doctex-font-lock-syntactic-keywords
2455 (append
2456 tex-font-lock-syntactic-keywords
2457 ;; For DocTeX comment-in-doc.
2458 `(("\\(\\^\\)\\^A" (1 (doctex-font-lock-^^A))))))
2459
2460(defvar doctex-font-lock-keywords
2461 (append tex-font-lock-keywords
2462 '(("^%<[^>]*>" (0 font-lock-preprocessor-face t)))))
2463
2464;;;###autoload
2465(define-derived-mode doctex-mode latex-mode "DocTeX"
2466 "Major mode to edit DocTeX files."
2467 (setq font-lock-defaults
2468 (cons (append (car font-lock-defaults) '(doctex-font-lock-keywords))
2469 (mapcar
2470 (lambda (x)
2471 (case (car-safe x)
2472 (font-lock-syntactic-keywords
2473 (cons (car x) 'doctex-font-lock-syntactic-keywords))
2474 (font-lock-syntactic-face-function
2475 (cons (car x) 'doctex-font-lock-syntactic-face-function))
2476 (t x)))
2477 (cdr font-lock-defaults)))))
528415e7
RS
2478
2479(run-hooks 'tex-mode-load-hook)
869bff31 2480
49116ac0
JB
2481(provide 'tex-mode)
2482
dd166d5f 2483;; arch-tag: c0a680b1-63aa-4547-84b9-4193c29c0080
d501f516 2484;;; tex-mode.el ends here