Mercurial > emacs
annotate lisp/textmodes/tex-mode.el @ 91293:c45d16b39212
(struct font_driver): Docstring of member `shape' is improved.
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Thu, 27 Dec 2007 01:14:29 +0000 |
parents | 4bc33ffdda1a |
children | 606f2d163a64 |
rev | line source |
---|---|
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1 ;;; tex-mode.el --- TeX, LaTeX, and SliTeX mode commands -*- coding: utf-8 -*- |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2 |
84674 | 3 ;; Copyright (C) 1985, 1986, 1989, 1992, 1994, 1995, 1996, 1997, 1998 |
4 ;; 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007 | |
5 ;; Free Software Foundation, Inc. | |
840
113281b361ec
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
814
diff
changeset
|
6 |
10215 | 7 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
8 ;; Keywords: tex |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
758
diff
changeset
|
9 |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
10 ;; Contributions over the years by William F. Schelter, Dick King, |
10215 | 11 ;; Stephen Gildea, Michael Prange, Jacob Gore, and Edward M. Reingold. |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
12 |
85 | 13 ;; This file is part of GNU Emacs. |
14 | |
15 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
16 ;; it under the terms of the GNU General Public License as published by | |
78225
b6d25790aab2
Switch license to GPLv3 or later.
Glenn Morris <rgm@gnu.org>
parents:
75347
diff
changeset
|
17 ;; the Free Software Foundation; either version 3, or (at your option) |
85 | 18 ;; any later version. |
19 | |
20 ;; GNU Emacs is distributed in the hope that it will be useful, | |
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
23 ;; GNU General Public License for more details. | |
24 | |
25 ;; You should have received a copy of the GNU General Public License | |
14383
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64084 | 27 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
28 ;; Boston, MA 02110-1301, USA. | |
85 | 29 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38083
diff
changeset
|
30 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
38083
diff
changeset
|
31 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
758
diff
changeset
|
32 ;;; Code: |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
758
diff
changeset
|
33 |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
34 ;; Pacify the byte-compiler |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
35 (eval-when-compile |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
36 (require 'compare-w) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
37 (require 'cl) |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
38 (require 'skeleton)) |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
39 |
65267
1b1d0bcb5670
(font-lock-comment-face, font-lock-doc-face): Add defvars.
Juanma Barranquero <lekktu@gmail.com>
parents:
65048
diff
changeset
|
40 (defvar font-lock-comment-face) |
1b1d0bcb5670
(font-lock-comment-face, font-lock-doc-face): Add defvars.
Juanma Barranquero <lekktu@gmail.com>
parents:
65048
diff
changeset
|
41 (defvar font-lock-doc-face) |
1b1d0bcb5670
(font-lock-comment-face, font-lock-doc-face): Add defvars.
Juanma Barranquero <lekktu@gmail.com>
parents:
65048
diff
changeset
|
42 |
6632
652dc23b83fd
(tex-start-shell): Use shell-mode-map (instead of comint-mode-map) because
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
6479
diff
changeset
|
43 (require 'shell) |
2576
48318133e7a6
(tex-compilation-parse-errors): Added. At the moment, this would have
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2571
diff
changeset
|
44 (require 'compile) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
45 |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
46 (defgroup tex-file nil |
64060
fa1dc4af6eee
(tex-file, tex-run, tex-view): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63228
diff
changeset
|
47 "TeX files and directories." |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
48 :prefix "tex-" |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
49 :group 'tex) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
50 |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
51 (defgroup tex-run nil |
64060
fa1dc4af6eee
(tex-file, tex-run, tex-view): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63228
diff
changeset
|
52 "Running external commands from TeX mode." |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
53 :prefix "tex-" |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
54 :group 'tex) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
55 |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
56 (defgroup tex-view nil |
64060
fa1dc4af6eee
(tex-file, tex-run, tex-view): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63228
diff
changeset
|
57 "Viewing and printing TeX files." |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
58 :prefix "tex-" |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
59 :group 'tex) |
85 | 60 |
957 | 61 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
62 (defcustom tex-shell-file-name nil |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
63 "*If non-nil, the shell file name to run in the subshell used to run TeX." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
64 :type '(choice (const :tag "None" nil) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
65 string) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
66 :group 'tex-run) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
67 |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
68 ;;;###autoload |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
69 (defcustom tex-directory "." |
15916
61e90a3e66aa
(tex-main-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15644
diff
changeset
|
70 "*Directory in which temporary files are written. |
7285 | 71 You can make this `/tmp' if your TEXINPUTS has no relative directories in it |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
72 and you don't try to apply \\[tex-region] or \\[tex-buffer] when there are |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
73 `\\input' commands with relative directories." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
74 :type 'directory |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
75 :group 'tex-file) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
76 |
957 | 77 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
78 (defcustom tex-first-line-header-regexp nil |
16777
b655268ba44f
(tex-first-line-header-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16493
diff
changeset
|
79 "Regexp for matching a first line which `tex-region' should include. |
b655268ba44f
(tex-first-line-header-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16493
diff
changeset
|
80 If this is non-nil, it should be a regular expression string; |
b655268ba44f
(tex-first-line-header-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16493
diff
changeset
|
81 if it matches the first line of the file, |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
82 `tex-region' always includes the first line in the TeX run." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
83 :type '(choice (const :tag "None" nil) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
84 regexp) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
85 :group 'tex-file) |
16777
b655268ba44f
(tex-first-line-header-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16493
diff
changeset
|
86 |
b655268ba44f
(tex-first-line-header-regexp): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
16493
diff
changeset
|
87 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
88 (defcustom tex-main-file nil |
15916
61e90a3e66aa
(tex-main-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15644
diff
changeset
|
89 "*The main TeX source file which includes this buffer's file. |
22847
31924d388b84
(tex-main-file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22707
diff
changeset
|
90 The command `tex-file' runs TeX on the file specified by `tex-main-file' |
31924d388b84
(tex-main-file): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
22707
diff
changeset
|
91 if the variable is non-nil." |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
92 :type '(choice (const :tag "None" nil) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
93 file) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
94 :group 'tex-file) |
15916
61e90a3e66aa
(tex-main-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15644
diff
changeset
|
95 |
61e90a3e66aa
(tex-main-file): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
15644
diff
changeset
|
96 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
97 (defcustom tex-offer-save t |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
98 "*If non-nil, ask about saving modified buffers before \\[tex-file] is run." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
99 :type 'boolean |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
100 :group 'tex-file) |
85 | 101 |
957 | 102 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
103 (defcustom tex-run-command "tex" |
85 | 104 "*Command used to run TeX subjob. |
24330
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
105 TeX Mode sets `tex-command' to this string. |
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
106 See the documentation of that variable." |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
107 :type 'string |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
108 :group 'tex-run) |
85 | 109 |
957 | 110 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
111 (defcustom latex-run-command "latex" |
85 | 112 "*Command used to run LaTeX subjob. |
24330
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
113 LaTeX Mode sets `tex-command' to this string. |
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
114 See the documentation of that variable." |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
115 :type 'string |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
116 :group 'tex-run) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
117 |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
118 ;;;###autoload |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
119 (defcustom slitex-run-command "slitex" |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
120 "*Command used to run SliTeX subjob. |
24330
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
121 SliTeX Mode sets `tex-command' to this string. |
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
122 See the documentation of that variable." |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
123 :type 'string |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
124 :group 'tex-run) |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
125 |
24330
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
126 ;;;###autoload |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
127 (defcustom tex-start-options "" |
44884
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
128 "*TeX options to use when starting TeX. |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
129 These immediately precede the commands in `tex-start-commands' |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
130 and the input file name, with no separating space and are not shell-quoted. |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
131 If nil, TeX runs with no options. See the documentation of `tex-command'." |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
132 :type 'string |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
133 :group 'tex-run |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59603
diff
changeset
|
134 :version "22.1") |
44884
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
135 |
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
136 ;;;###autoload |
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
137 (defcustom tex-start-commands "\\nonstopmode\\input" |
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
138 "*TeX commands to use when starting TeX. |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
139 They are shell-quoted and precede the input file name, with a separating space. |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
140 If nil, no commands are used. See the documentation of `tex-command'." |
44884
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
141 :type '(radio (const :tag "Interactive \(nil\)" nil) |
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
142 (const :tag "Nonstop \(\"\\nonstopmode\\input\"\)" |
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
143 "\\nonstopmode\\input") |
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
144 (string :tag "String at your choice")) |
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
145 :group 'tex-run |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59603
diff
changeset
|
146 :version "22.1") |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
147 |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
148 (defvar latex-standard-block-names |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
149 '("abstract" "array" "center" "description" |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
150 "displaymath" "document" "enumerate" "eqnarray" |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
151 "eqnarray*" "equation" "figure" "figure*" |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
152 "flushleft" "flushright" "itemize" "letter" |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
153 "list" "minipage" "picture" "quotation" |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
154 "quote" "slide" "sloppypar" "tabbing" |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
155 "table" "table*" "tabular" "tabular*" |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
156 "thebibliography" "theindex*" "titlepage" "trivlist" |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
157 "verbatim" "verbatim*" "verse" "math") |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
158 "Standard LaTeX block names.") |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
159 |
957 | 160 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
161 (defcustom latex-block-names nil |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
162 "*User defined LaTeX block names. |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
163 Combined with `latex-standard-block-names' for minibuffer completion." |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
164 :type '(repeat string) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
165 :group 'tex-run) |
85 | 166 |
957 | 167 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
168 (defcustom tex-bibtex-command "bibtex" |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
169 "*Command used by `tex-bibtex-file' to gather bibliographic data. |
7285 | 170 If this string contains an asterisk (`*'), that is replaced by the file name; |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
171 otherwise, the file name, preceded by blank, is added at the end." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
172 :type 'string |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
173 :group 'tex-run) |
85 | 174 |
957 | 175 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
176 (defcustom tex-dvi-print-command "lpr -d" |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
177 "*Command used by \\[tex-print] to print a .dvi file. |
7285 | 178 If this string contains an asterisk (`*'), that is replaced by the file name; |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
179 otherwise, the file name, preceded by blank, is added at the end." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
180 :type 'string |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
181 :group 'tex-view) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
182 |
957 | 183 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
184 (defcustom tex-alt-dvi-print-command "lpr -d" |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
185 "*Command used by \\[tex-print] with a prefix arg to print a .dvi file. |
7285 | 186 If this string contains an asterisk (`*'), that is replaced by the file name; |
187 otherwise, the file name, preceded by blank, is added at the end. | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
188 |
7285 | 189 If two printers are not enough of a choice, you can set the variable |
190 `tex-alt-dvi-print-command' to an expression that asks what you want; | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
191 for example, |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
192 |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
193 (setq tex-alt-dvi-print-command |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
194 '(format \"lpr -P%s\" (read-string \"Use printer: \"))) |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
195 |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
196 would tell \\[tex-print] with a prefix argument to ask you which printer to |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
197 use." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
198 :type '(choice (string :tag "Command") |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
199 (sexp :tag "Expression")) |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
200 :group 'tex-view) |
85 | 201 |
957 | 202 ;;;###autoload |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
203 (defcustom tex-dvi-view-command |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
204 '(cond |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
205 ((eq window-system 'x) "xdvi") |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59603
diff
changeset
|
206 ((eq window-system 'w32) "yap") |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
207 (t "dvi2tty * | cat -s")) |
7285 | 208 "*Command used by \\[tex-view] to display a `.dvi' file. |
48170
a65d281d19f0
(tex-dvi-view-command): Value can be sexp.
Richard M. Stallman <rms@gnu.org>
parents:
48120
diff
changeset
|
209 If it is a string, that specifies the command directly. |
7285 | 210 If this string contains an asterisk (`*'), that is replaced by the file name; |
48170
a65d281d19f0
(tex-dvi-view-command): Value can be sexp.
Richard M. Stallman <rms@gnu.org>
parents:
48120
diff
changeset
|
211 otherwise, the file name, preceded by a space, is added at the end. |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
212 |
48170
a65d281d19f0
(tex-dvi-view-command): Value can be sexp.
Richard M. Stallman <rms@gnu.org>
parents:
48120
diff
changeset
|
213 If the value is a form, it is evaluated to get the command to use." |
a65d281d19f0
(tex-dvi-view-command): Value can be sexp.
Richard M. Stallman <rms@gnu.org>
parents:
48120
diff
changeset
|
214 :type '(choice (const nil) string sexp) |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
215 :group 'tex-view) |
85 | 216 |
957 | 217 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
218 (defcustom tex-show-queue-command "lpq" |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
219 "*Command used by \\[tex-show-print-queue] to show the print queue. |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
220 Should show the queue(s) that \\[tex-print] puts jobs on." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
221 :type 'string |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
222 :group 'tex-view) |
85 | 223 |
957 | 224 ;;;###autoload |
26270
14dbec3a82b4
(tex-default-mode): Changed to latex-mode.
Gerd Moellmann <gerd@gnu.org>
parents:
25414
diff
changeset
|
225 (defcustom tex-default-mode 'latex-mode |
85 | 226 "*Mode to enter for a new file that might be either TeX or LaTeX. |
227 This variable is used when it can't be determined whether the file | |
228 is plain TeX or LaTeX or what because the file contains no commands. | |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
229 Normally set to either `plain-tex-mode' or `latex-mode'." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
230 :type 'function |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
231 :group 'tex) |
85 | 232 |
957 | 233 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
234 (defcustom tex-open-quote "``" |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
235 "*String inserted by typing \\[tex-insert-quote] to open a quotation." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
236 :type 'string |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
237 :options '("``" "\"<" "\"`" "<<" "«") |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
238 :group 'tex) |
85 | 239 |
957 | 240 ;;;###autoload |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
241 (defcustom tex-close-quote "''" |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
242 "*String inserted by typing \\[tex-insert-quote] to close a quotation." |
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
243 :type 'string |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
244 :options '("''" "\">" "\"'" ">>" "»") |
17435
b104a6fb7fa3
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
16807
diff
changeset
|
245 :group 'tex) |
85 | 246 |
81776 | 247 (defcustom tex-fontify-script t |
248 "If non-nil, fontify subscript and superscript strings." | |
249 :type 'boolean | |
84964
66630159c742
(tex-fontify-script, tex-font-script-display): Add :version tag.
Glenn Morris <rgm@gnu.org>
parents:
84958
diff
changeset
|
250 :group 'tex |
66630159c742
(tex-fontify-script, tex-font-script-display): Add :version tag.
Glenn Morris <rgm@gnu.org>
parents:
84958
diff
changeset
|
251 :version "23.1") |
81776 | 252 (put 'tex-fontify-script 'safe-local-variable 'booleanp) |
253 | |
82341
13d9a34c970a
(tex-font-lock-unfontify-region): Take tex-font-script-display into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82140
diff
changeset
|
254 (defcustom tex-font-script-display '(-0.2 0.2) |
84847
d74a2df235a9
(tex-font-script-display): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84756
diff
changeset
|
255 "How much to lower and raise subscript and superscript content. |
d74a2df235a9
(tex-font-script-display): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84756
diff
changeset
|
256 This is a list of two floats. The first is negative and |
d74a2df235a9
(tex-font-script-display): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84756
diff
changeset
|
257 specifies how much subscript is lowered, the second is positive |
d74a2df235a9
(tex-font-script-display): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84756
diff
changeset
|
258 and specifies how much superscript is raised. Heights are |
d74a2df235a9
(tex-font-script-display): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84756
diff
changeset
|
259 measured relative to that of the normal text." |
81776 | 260 :group 'tex |
82341
13d9a34c970a
(tex-font-lock-unfontify-region): Take tex-font-script-display into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82140
diff
changeset
|
261 :type '(list (float :tag "Subscript") |
84964
66630159c742
(tex-fontify-script, tex-font-script-display): Add :version tag.
Glenn Morris <rgm@gnu.org>
parents:
84958
diff
changeset
|
262 (float :tag "Superscript")) |
66630159c742
(tex-fontify-script, tex-font-script-display): Add :version tag.
Glenn Morris <rgm@gnu.org>
parents:
84958
diff
changeset
|
263 :version "23.1") |
81776 | 264 |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
265 (defvar tex-last-temp-file nil |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
266 "Latest temporary file generated by \\[tex-region] and \\[tex-buffer]. |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
267 Deleted when the \\[tex-region] or \\[tex-buffer] is next run, or when the |
7285 | 268 tex shell terminates.") |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
269 |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
270 (defvar tex-command "tex" |
24330
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
271 "*Command to run TeX. |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
272 If this string contains an asterisk \(`*'\), that is replaced by the file name; |
44884
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
273 otherwise the value of `tex-start-options', the \(shell-quoted\) |
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
274 value of `tex-start-commands', and the file name are added at the end |
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
275 with blanks as separators. |
24330
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
276 |
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
277 In TeX, LaTeX, and SliTeX Mode this variable becomes buffer local. |
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
278 In these modes, use \\[set-variable] if you want to change it for the |
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
279 current buffer.") |
85 | 280 |
281 (defvar tex-trailer nil | |
282 "String appended after the end of a region sent to TeX by \\[tex-region].") | |
283 | |
284 (defvar tex-start-of-header nil | |
13248
a7e83f7eb499
(tex-start-of-header): Now a regexp.
Richard M. Stallman <rms@gnu.org>
parents:
12704
diff
changeset
|
285 "Regular expression used by \\[tex-region] to find start of file's header.") |
85 | 286 |
287 (defvar tex-end-of-header nil | |
13248
a7e83f7eb499
(tex-start-of-header): Now a regexp.
Richard M. Stallman <rms@gnu.org>
parents:
12704
diff
changeset
|
288 "Regular expression used by \\[tex-region] to find end of file's header.") |
85 | 289 |
290 (defvar tex-shell-cd-command "cd" | |
291 "Command to give to shell running TeX to change directory. | |
7285 | 292 The value of `tex-directory' is appended to this, separated by a space.") |
85 | 293 |
294 (defvar tex-zap-file nil | |
295 "Temporary file name used for text being sent as input to TeX. | |
296 Should be a simple file name with no extension or directory specification.") | |
297 | |
298 (defvar tex-last-buffer-texed nil | |
299 "Buffer which was last TeXed.") | |
300 | |
301 (defvar tex-print-file nil | |
302 "File name that \\[tex-print] prints. | |
303 Set by \\[tex-region], \\[tex-buffer], and \\[tex-file].") | |
304 | |
51525
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
305 (defvar tex-mode-syntax-table |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
306 (let ((st (make-syntax-table))) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
307 (modify-syntax-entry ?% "<" st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
308 (modify-syntax-entry ?\n ">" st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
309 (modify-syntax-entry ?\f ">" st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
310 (modify-syntax-entry ?\C-@ "w" st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
311 (modify-syntax-entry ?' "w" st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
312 (modify-syntax-entry ?@ "_" st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
313 (modify-syntax-entry ?* "_" st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
314 (modify-syntax-entry ?\t " " st) |
50943
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
315 ;; ~ is printed by TeX as a space, but it's semantics in the syntax |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
316 ;; of TeX is not `whitespace' (i.e. it's just like \hspace{foo}). |
51525
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
317 (modify-syntax-entry ?~ "." st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
318 (modify-syntax-entry ?$ "$$" st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
319 (modify-syntax-entry ?\\ "/" st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
320 (modify-syntax-entry ?\" "." st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
321 (modify-syntax-entry ?& "." st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
322 (modify-syntax-entry ?_ "." st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
323 (modify-syntax-entry ?^ "." st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
324 st) |
85 | 325 "Syntax table used while in TeX mode.") |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
326 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
327 ;;;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
328 ;;;; Imenu support |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
329 ;;;; |
85 | 330 |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
331 (defcustom latex-imenu-indent-string ". " |
18393
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
332 "*String to add repeated in front of nested sectional units for Imenu. |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
333 An alternative value is \" . \", if you use a font with a narrow period." |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
334 :type 'string |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
335 :group 'tex) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
336 |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
337 (defvar latex-section-alist |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
338 '(("part" . 0) ("chapter" . 1) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
339 ("section" . 2) ("subsection" . 3) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
340 ("subsubsection" . 4) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
341 ("paragraph" . 5) ("subparagraph" . 6))) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
342 |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
343 (defvar latex-metasection-list |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
344 '("documentstyle" "documentclass" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
345 "begin{document}" "end{document}" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
346 "appendix" "frontmatter" "mainmatter" "backmatter")) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
347 |
15240
21998d33460f
(latex-imenu-create-index):
Richard M. Stallman <rms@gnu.org>
parents:
14734
diff
changeset
|
348 (defun latex-imenu-create-index () |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
349 "Generate an alist for imenu from a LaTeX buffer." |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
350 (let ((section-regexp |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
351 (concat "\\\\" (regexp-opt (mapcar 'car latex-section-alist) t) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
352 "\\*?[ \t]*{")) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
353 (metasection-regexp |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
354 (concat "\\\\" (regexp-opt latex-metasection-list t))) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
355 i0 menu case-fold-search) |
18393
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
356 (save-excursion |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
357 ;; Find the top-most level in this file but don't allow it to be |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
358 ;; any deeper than "section" (which is top-level in an article). |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
359 (goto-char (point-min)) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
360 (if (search-forward-regexp "\\\\part\\*?[ \t]*{" nil t) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
361 (setq i0 0) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
362 (if (search-forward-regexp "\\\\chapter\\*?[ \t]*{" nil t) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
363 (setq i0 1) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
364 (setq i0 2))) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
365 |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
366 ;; Look for chapters and sections. |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
367 (goto-char (point-min)) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
368 (while (search-forward-regexp section-regexp nil t) |
18393
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
369 (let ((start (match-beginning 0)) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
370 (here (point)) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
371 (i (cdr (assoc (buffer-substring-no-properties |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
372 (match-beginning 1) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
373 (match-end 1)) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
374 latex-section-alist)))) |
18393
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
375 (backward-char 1) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
376 (condition-case err |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
377 (progn |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
378 ;; Using sexps allows some use of matching {...} inside |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
379 ;; titles. |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
380 (forward-sexp 1) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
381 (push (cons (concat (apply 'concat |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
382 (make-list |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
383 (max 0 (- i i0)) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
384 latex-imenu-indent-string)) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
385 (buffer-substring-no-properties |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
386 here (1- (point)))) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
387 start) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
388 menu)) |
18393
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
389 (error nil)))) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
390 |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
391 ;; Look for included material. |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
392 (goto-char (point-min)) |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
393 (while (search-forward-regexp |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
394 "\\\\\\(include\\|input\\|verbatiminput\\|bibliography\\)\ |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
395 \[ \t]*{\\([^}\n]+\\)}" |
18393
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
396 nil t) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
397 (push (cons (concat "<<" (buffer-substring-no-properties |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
398 (match-beginning 2) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
399 (match-end 2)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
400 (if (= (char-after (match-beginning 1)) ?b) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
401 ".bbl" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
402 ".tex")) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
403 (match-beginning 0)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
404 menu)) |
18393
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
405 |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
406 ;; Look for \frontmatter, \mainmatter, \backmatter, and \appendix. |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
407 (goto-char (point-min)) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
408 (while (search-forward-regexp metasection-regexp nil t) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
409 (push (cons "--" (match-beginning 0)) menu)) |
18393
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
410 |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
411 ;; Sort in increasing buffer position order. |
f34e9defc58c
(latex-imenu-create-index): Make it much smarter.
Richard M. Stallman <rms@gnu.org>
parents:
17435
diff
changeset
|
412 (sort menu (function (lambda (a b) (< (cdr a) (cdr b)))))))) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
413 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
414 ;;;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
415 ;;;; Outline support |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
416 ;;;; |
12704
0b36e50fb5af
(latex-imenu-generic-expression): Var defined.
Karl Heuer <kwzh@gnu.org>
parents:
11617
diff
changeset
|
417 |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
418 (defvar latex-outline-regexp |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
419 (concat "\\\\" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
420 (regexp-opt (append latex-metasection-list |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
421 (mapcar 'car latex-section-alist)) t))) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
422 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
423 (defun latex-outline-level () |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
424 (if (looking-at latex-outline-regexp) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
425 (1+ (or (cdr (assoc (match-string 1) latex-section-alist)) -1)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
426 1000)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
427 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
428 ;;;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
429 ;;;; Font-Lock support |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
430 ;;;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
431 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
432 ;(defvar tex-font-lock-keywords |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
433 ; ;; Regexps updated with help from Ulrik Dickow <dickow@nbi.dk>. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
434 ; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
435 ; 2 font-lock-function-name-face) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
436 ; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
437 ; 2 font-lock-constant-face) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
438 ; ;; It seems a bit dubious to use `bold' and `italic' faces since we might |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
439 ; ;; not be able to display those fonts. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
440 ; ("{\\\\bf\\([^}]+\\)}" 1 'bold keep) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
441 ; ("{\\\\\\(em\\|it\\|sl\\)\\([^}]+\\)}" 2 'italic keep) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
442 ; ("\\\\\\([a-zA-Z@]+\\|.\\)" . font-lock-keyword-face) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
443 ; ("^[ \t\n]*\\\\def[\\\\@]\\(\\w+\\)" 1 font-lock-function-name-face keep)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
444 ; ;; Rewritten and extended for LaTeX2e by Ulrik Dickow <dickow@nbi.dk>. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
445 ; '(("\\\\\\(begin\\|end\\|newcommand\\){\\([a-zA-Z0-9\\*]+\\)}" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
446 ; 2 font-lock-function-name-face) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
447 ; ("\\\\\\(cite\\|label\\|pageref\\|ref\\){\\([^} \t\n]+\\)}" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
448 ; 2 font-lock-constant-face) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
449 ; ("^[ \t]*\\\\def\\\\\\(\\(\\w\\|@\\)+\\)" 1 font-lock-function-name-face) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
450 ; "\\\\\\([a-zA-Z@]+\\|.\\)" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
451 ; ;; It seems a bit dubious to use `bold' and `italic' faces since we might |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
452 ; ;; not be able to display those fonts. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
453 ; ;; LaTeX2e: \emph{This is emphasized}. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
454 ; ("\\\\emph{\\([^}]+\\)}" 1 'italic keep) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
455 ; ;; LaTeX2e: \textbf{This is bold}, \textit{...}, \textsl{...} |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
456 ; ("\\\\text\\(\\(bf\\)\\|it\\|sl\\){\\([^}]+\\)}" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
457 ; 3 (if (match-beginning 2) 'bold 'italic) keep) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
458 ; ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
459 ; ("\\\\\\(\\(bf\\)\\|em\\|it\\|sl\\)\\>\\(\\([^}&\\]\\|\\\\[^\\]\\)+\\)" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
460 ; 3 (if (match-beginning 2) 'bold 'italic) keep)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
461 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
462 ;; Rewritten with the help of Alexandra Bac <abac@welcome.disi.unige.it>. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
463 (defconst tex-font-lock-keywords-1 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
464 (eval-when-compile |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
465 (let* (;; Names of commands whose arg should be fontified as heading, etc. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
466 (headings (regexp-opt |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
467 '("title" "begin" "end" "chapter" "part" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
468 "section" "subsection" "subsubsection" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
469 "paragraph" "subparagraph" "subsubparagraph" |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
470 "newcommand" "renewcommand" "providecommand" |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
471 "newenvironment" "renewenvironment" |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
472 "newtheorem" "renewtheorem") |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
473 t)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
474 (variables (regexp-opt |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
475 '("newcounter" "newcounter*" "setcounter" "addtocounter" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
476 "setlength" "addtolength" "settowidth") |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
477 t)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
478 (includes (regexp-opt |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
479 '("input" "include" "includeonly" "bibliography" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
480 "epsfig" "psfig" "epsf" "nofiles" "usepackage" |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
481 "documentstyle" "documentclass" "verbatiminput" |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
482 "includegraphics" "includegraphics*" |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
483 "url" "nolinkurl") |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
484 t)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
485 ;; Miscellany. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
486 (slash "\\\\") |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
487 (opt " *\\(\\[[^]]*\\] *\\)*") |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
488 ;; This would allow highlighting \newcommand\CMD but requires |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
489 ;; adapting subgroup numbers below. |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
490 ;; (arg "\\(?:{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)\\|\\\\[a-z*]+\\)")) |
33789
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
491 (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)")) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
492 (list |
57698
5e84f3fe94f0
(tex-font-lock-keywords-1): Fix up the spurious
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57639
diff
changeset
|
493 ;; font-lock-syntactic-keywords causes the \ of \end{verbatim} to be |
65683
b8bdecc9aa11
(tex-font-lock-append-prop, tex-font-lock-suscript, tex-insert-quote)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65315
diff
changeset
|
494 ;; highlighted as tex-verbatim face. Let's undo that. |
57698
5e84f3fe94f0
(tex-font-lock-keywords-1): Fix up the spurious
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57639
diff
changeset
|
495 ;; This is ugly and brittle :-( --Stef |
5e84f3fe94f0
(tex-font-lock-keywords-1): Fix up the spurious
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57639
diff
changeset
|
496 '("^\\(\\\\\\)end" (1 (get-text-property (match-end 1) 'face) t)) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
497 ;; display $$ math $$ |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
498 ;; We only mark the match between $$ and $$ because the $$ delimiters |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
499 ;; themselves have already been marked (along with $..$) by syntactic |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
500 ;; fontification. Also this is done at the very beginning so as to |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
501 ;; interact with the other keywords in the same way as $...$ does. |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
502 (list "\\$\\$\\([^$]+\\)\\$\\$" 1 'tex-math-face) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
503 ;; Heading args. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
504 (list (concat slash headings "\\*?" opt arg) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
505 ;; If ARG ends up matching too much (if the {} don't match, f.ex) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
506 ;; jit-lock will do funny things: when updating the buffer |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
507 ;; the re-highlighting is only done locally so it will just |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
508 ;; match the local line, but defer-contextually will |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
509 ;; match more lines at a time, so ARG will end up matching |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
510 ;; a lot more, which might suddenly include a comment |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
511 ;; so you get things highlighted bold when you type them |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
512 ;; but they get turned back to normal a little while later |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
513 ;; because "there's already a face there". |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
514 ;; Using `keep' works around this un-intuitive behavior as well |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
515 ;; as improves the behavior in the very rare case where you do |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
516 ;; have a comment in ARG. |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
517 3 'font-lock-function-name-face 'keep) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
518 (list (concat slash "\\(?:provide\\|\\(?:re\\)?new\\)command\\** *\\(\\\\[A-Za-z@]+\\)") |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
519 1 'font-lock-function-name-face 'keep) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
520 ;; Variable args. |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
521 (list (concat slash variables " *" arg) 2 'font-lock-variable-name-face) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
522 ;; Include args. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
523 (list (concat slash includes opt arg) 3 'font-lock-builtin-face) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
524 ;; Definitions. I think. |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
525 '("^[ \t]*\\\\def *\\\\\\(\\(\\w\\|@\\)+\\)" |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
526 1 font-lock-function-name-face)))) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
527 "Subdued expressions to highlight in TeX modes.") |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
528 |
57415
fdd8f0d7c67d
(tex-font-lock-append-prop): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57304
diff
changeset
|
529 (defun tex-font-lock-append-prop (prop) |
fdd8f0d7c67d
(tex-font-lock-append-prop): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57304
diff
changeset
|
530 (unless (memq (get-text-property (match-end 1) 'face) |
65683
b8bdecc9aa11
(tex-font-lock-append-prop, tex-font-lock-suscript, tex-insert-quote)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65315
diff
changeset
|
531 '(font-lock-comment-face tex-verbatim)) |
57415
fdd8f0d7c67d
(tex-font-lock-append-prop): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57304
diff
changeset
|
532 prop)) |
fdd8f0d7c67d
(tex-font-lock-append-prop): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57304
diff
changeset
|
533 |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
534 (defconst tex-font-lock-keywords-2 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
535 (append tex-font-lock-keywords-1 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
536 (eval-when-compile |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
537 (let* (;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
538 ;; Names of commands whose arg should be fontified with fonts. |
33789
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
539 (bold (regexp-opt '("textbf" "textsc" "textup" |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
540 "boldsymbol" "pmb") t)) |
33789
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
541 (italic (regexp-opt '("textit" "textsl" "emph") t)) |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
542 ;; FIXME: unimplemented yet. |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
543 ;; (type (regexp-opt '("texttt" "textmd" "textrm" "textsf") t)) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
544 ;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
545 ;; Names of commands whose arg should be fontified as a citation. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
546 (citations (regexp-opt |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
547 '("label" "ref" "pageref" "vref" "eqref" |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
548 "cite" "nocite" "index" "glossary" "bibitem" |
80888
4005ed72ef83
(tex-font-lock-keywords-2): Add citet and citep
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
549 ;; natbib's two variants of \cite: |
4005ed72ef83
(tex-font-lock-keywords-2): Add citet and citep
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
75347
diff
changeset
|
550 "citep" "citet" |
33789
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
551 ;; These are text, rather than citations. |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
552 ;; "caption" "footnote" "footnotemark" "footnotetext" |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
553 ) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
554 t)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
555 ;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
556 ;; Names of commands that should be fontified. |
43307
7acf4e4617be
(tex-font-lock-keywords-2): Require non-letter after specials.
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
557 (specials-1 (regexp-opt '("\\" "\\*") t)) ;; "-" |
7acf4e4617be
(tex-font-lock-keywords-2): Require non-letter after specials.
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
558 (specials-2 (regexp-opt |
7acf4e4617be
(tex-font-lock-keywords-2): Require non-letter after specials.
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
559 '("linebreak" "nolinebreak" "pagebreak" "nopagebreak" |
7acf4e4617be
(tex-font-lock-keywords-2): Require non-letter after specials.
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
560 "newline" "newpage" "clearpage" "cleardoublepage" |
7acf4e4617be
(tex-font-lock-keywords-2): Require non-letter after specials.
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
561 "displaybreak" "allowdisplaybreaks" |
7acf4e4617be
(tex-font-lock-keywords-2): Require non-letter after specials.
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
562 "enlargethispage") t)) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
563 (general "\\([a-zA-Z@]+\\**\\|[^ \t\n]\\)") |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
564 ;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
565 ;; Miscellany. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
566 (slash "\\\\") |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
567 (opt " *\\(\\[[^]]*\\] *\\)*") |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
568 (args "\\(\\(?:[^{}&\\]+\\|\\\\.\\|{[^}]*}\\)+\\)") |
33789
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
569 (arg "{\\(\\(?:[^{}\\]+\\|\\\\.\\|{[^}]*}\\)+\\)")) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
570 (list |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
571 ;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
572 ;; Citation args. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
573 (list (concat slash citations opt arg) 3 'font-lock-constant-face) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
574 ;; |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
575 ;; Text between `` quotes ''. |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
576 (cons (concat (regexp-opt `("``" "\"<" "\"`" "<<" "«") t) |
46120
7177a47bc557
(tex-file): call `save-some-buffers' before `tex-main-file'
Sam Steingold <sds@gnu.org>
parents:
45055
diff
changeset
|
577 "[^'\">{]+" ;a bit pessimistic |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
578 (regexp-opt `("''" "\">" "\"'" ">>" "»") t)) |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
579 'font-lock-string-face) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
580 ;; |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
581 ;; Command names, special and general. |
43307
7acf4e4617be
(tex-font-lock-keywords-2): Require non-letter after specials.
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
582 (cons (concat slash specials-1) 'font-lock-warning-face) |
7acf4e4617be
(tex-font-lock-keywords-2): Require non-letter after specials.
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
583 (list (concat "\\(" slash specials-2 "\\)\\([^a-zA-Z@]\\|\\'\\)") |
7acf4e4617be
(tex-font-lock-keywords-2): Require non-letter after specials.
Andreas Schwab <schwab@suse.de>
parents:
38412
diff
changeset
|
584 1 'font-lock-warning-face) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
585 (concat slash general) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
586 ;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
587 ;; Font environments. It seems a bit dubious to use `bold' etc. faces |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
588 ;; since we might not be able to display those fonts. |
57415
fdd8f0d7c67d
(tex-font-lock-append-prop): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57304
diff
changeset
|
589 (list (concat slash bold " *" arg) 2 |
fdd8f0d7c67d
(tex-font-lock-append-prop): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57304
diff
changeset
|
590 '(tex-font-lock-append-prop 'bold) 'append) |
fdd8f0d7c67d
(tex-font-lock-append-prop): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57304
diff
changeset
|
591 (list (concat slash italic " *" arg) 2 |
fdd8f0d7c67d
(tex-font-lock-append-prop): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57304
diff
changeset
|
592 '(tex-font-lock-append-prop 'italic) 'append) |
33789
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
593 ;; (list (concat slash type arg) 2 '(quote bold-italic) 'append) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
594 ;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
595 ;; Old-style bf/em/it/sl. Stop at `\\' and un-escaped `&', for tables. |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
596 (list (concat "\\\\\\(em\\|it\\|sl\\)\\>" args) |
57415
fdd8f0d7c67d
(tex-font-lock-append-prop): New fun.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57304
diff
changeset
|
597 2 '(tex-font-lock-append-prop 'italic) 'append) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
598 ;; This is separate from the previous one because of cases like |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
599 ;; {\em foo {\bf bar} bla} where both match. |
66154
cdd77b8367b9
(tex-font-lock-keywords-2): Undo prev change.
Richard M. Stallman <rms@gnu.org>
parents:
66097
diff
changeset
|
600 (list (concat "\\\\\\(bf\\(series\\)?\\)\\>" args) |
65969
cd4113a86403
(tex-font-lock-keywords-2): Adjust match number.
Andreas Schwab <schwab@suse.de>
parents:
65839
diff
changeset
|
601 3 '(tex-font-lock-append-prop 'bold) 'append))))) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
602 "Gaudy expressions to highlight in TeX modes.") |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
603 |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
604 (defun tex-font-lock-suscript (pos) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
605 (unless (or (memq (get-text-property pos 'face) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
606 '(font-lock-constant-face font-lock-builtin-face |
65683
b8bdecc9aa11
(tex-font-lock-append-prop, tex-font-lock-suscript, tex-insert-quote)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65315
diff
changeset
|
607 font-lock-comment-face tex-verbatim)) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
608 ;; Check for backslash quoting |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
609 (let ((odd nil) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
610 (pos pos)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
611 (while (eq (char-before pos) ?\\) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
612 (setq pos (1- pos) odd (not odd))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
613 odd)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
614 (if (eq (char-after pos) ?_) |
81776 | 615 `(face subscript display (raise ,(car tex-font-script-display))) |
82341
13d9a34c970a
(tex-font-lock-unfontify-region): Take tex-font-script-display into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82140
diff
changeset
|
616 `(face superscript display (raise ,(cadr tex-font-script-display)))))) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
617 |
70048
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
618 (defun tex-font-lock-match-suscript (limit) |
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
619 "Match subscript and superscript patterns up to LIMIT." |
81776 | 620 (when (and tex-fontify-script |
621 (re-search-forward "[_^] *\\([^\n\\{}]\\|\ | |
622 \\\\\\([a-zA-Z@]+\\|[^ \t\n]\\)\\|\\({\\)\\)" limit t)) | |
70048
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
623 (when (match-end 3) |
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
624 (let ((beg (match-beginning 3)) |
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
625 (end (save-restriction |
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
626 (narrow-to-region (point-min) limit) |
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
627 (condition-case nil (scan-lists (point) 1 1) (error nil))))) |
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
628 (store-match-data (if end |
70050
5fd821256f0d
(tex-font-lock-match-suscript): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
70048
diff
changeset
|
629 (list (match-beginning 0) end beg end) |
5fd821256f0d
(tex-font-lock-match-suscript): Paren typo.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
70048
diff
changeset
|
630 (list beg beg beg beg))))) |
70048
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
631 t)) |
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
632 |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
633 (defconst tex-font-lock-keywords-3 |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
634 (append tex-font-lock-keywords-2 |
70048
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
635 '((tex-font-lock-match-suscript |
80049d479c75
(tex-font-lock-match-suscript): New function.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
68648
diff
changeset
|
636 (1 (tex-font-lock-suscript (match-beginning 0)) append)))) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
637 "Experimental expressions to highlight in TeX modes.") |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
638 |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
639 (defvar tex-font-lock-keywords tex-font-lock-keywords-1 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
640 "Default expressions to highlight in TeX modes.") |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
641 |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
642 (defvar tex-verbatim-environments |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
643 '("verbatim" "verbatim*")) |
81912
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
644 (put 'tex-verbatim-environments 'safe-local-variable |
84627
2b86b3a54870
(tex-verbatim-environments): Eliminate CL dependency.
Richard M. Stallman <rms@gnu.org>
parents:
84620
diff
changeset
|
645 (lambda (x) (null (delq t (mapcar 'stringp x))))) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
646 |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
647 (defvar tex-font-lock-syntactic-keywords |
81912
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
648 '((eval . `(,(concat "^\\\\begin *{" |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
649 (regexp-opt tex-verbatim-environments t) |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
650 "}.*\\(\n\\)") 2 "|")) |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
651 ;; Technically, we'd like to put the "|" property on the \n preceding |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
652 ;; the \end, but this would have 2 disadvantages: |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
653 ;; 1 - it's wrong if the verbatim env is empty (the same \n is used to |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
654 ;; start and end the fenced-string). |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
655 ;; 2 - font-lock considers the preceding \n as being part of the |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
656 ;; preceding line, so things gets screwed every time the previous |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
657 ;; line is re-font-locked on its own. |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
658 ;; There's a hack in tex-font-lock-keywords-1 to remove the verbatim |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
659 ;; face from the \ but C-M-f still jumps to the wrong spot :-( --Stef |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
660 (eval . `(,(concat "^\\(\\\\\\)end *{" |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
661 (regexp-opt tex-verbatim-environments t) |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
662 "}\\(.?\\)") (1 "|") (3 "<"))) |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
663 ;; ("^\\(\\\\\\)begin *{comment}" 1 "< b") |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
664 ;; ("^\\\\end *{comment}.*\\(\n\\)" 1 "> b") |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
665 ("\\\\verb\\**\\([^a-z@*]\\)" |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
666 ;; Do it last, because it uses syntax-ppss which needs the |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
667 ;; syntax-table properties of previous entries. |
82e8a862c00b
(tex-verbatim-environments): Add safe-local-variable property.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
81776
diff
changeset
|
668 1 (tex-font-lock-verb (match-end 1))))) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
669 |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
670 (defun tex-font-lock-unfontify-region (beg end) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
671 (font-lock-default-unfontify-region beg end) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
672 (while (< beg end) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
673 (let ((next (next-single-property-change beg 'display nil end)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
674 (prop (get-text-property beg 'display))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
675 (if (and (eq (car-safe prop) 'raise) |
82341
13d9a34c970a
(tex-font-lock-unfontify-region): Take tex-font-script-display into account.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
82140
diff
changeset
|
676 (member (car-safe (cdr prop)) tex-font-script-display) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
677 (null (cddr prop))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
678 (put-text-property beg next 'display nil)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
679 (setq beg next)))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
680 |
84958
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
681 (defcustom tex-suscript-height-ratio 0.8 |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
682 "Ratio of subscript/superscript height to that of the preceding text. |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
683 In nested subscript/superscript, this factor is applied repeatedly, |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
684 subject to the limit set by `tex-suscript-height-minimum'." |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
685 :type 'float |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
686 :group 'tex |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
687 :version "23.1") |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
688 |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
689 (defcustom tex-suscript-height-minimum 0.0 |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
690 "Integer or float limiting the minimum size of subscript/superscript text. |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
691 An integer is an absolute height in units of 1/10 point, a float |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
692 is a height relative to that of the default font. Zero means no minimum." |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
693 :type '(choice (integer :tag "Integer height in 1/10 point units") |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
694 (float :tag "Fraction of default font height")) |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
695 :group 'tex |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
696 :version "23.1") |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
697 |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
698 (defun tex-suscript-height (height) |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
699 "Return the integer height of subscript/superscript font in 1/10 points. |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
700 Not smaller than the value set by `tex-suscript-height-minimum'." |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
701 (ceiling (max (if (integerp tex-suscript-height-minimum) |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
702 tex-suscript-height-minimum |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
703 ;; For bootstrapping. |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
704 (condition-case nil |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
705 (* tex-suscript-height-minimum |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
706 (face-attribute 'default :height)) |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
707 (error 0))) |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
708 ;; NB assumes height is integer. |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
709 (* height tex-suscript-height-ratio)))) |
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
710 |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
711 (defface superscript |
84958
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
712 '((t :height tex-suscript-height)) ;; :raise 0.2 |
62811
ccc8869d7418
(superscript, subscript, tex-math-face)
Lute Kamstra <lute@gnu.org>
parents:
61770
diff
changeset
|
713 "Face used for superscripts." |
ccc8869d7418
(superscript, subscript, tex-math-face)
Lute Kamstra <lute@gnu.org>
parents:
61770
diff
changeset
|
714 :group 'tex) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
715 (defface subscript |
84958
ca3cf0871ecb
(tex-suscript-height-ratio, tex-suscript-height-minimum): New
Glenn Morris <rgm@gnu.org>
parents:
84847
diff
changeset
|
716 '((t :height tex-suscript-height)) ;; :raise -0.2 |
62811
ccc8869d7418
(superscript, subscript, tex-math-face)
Lute Kamstra <lute@gnu.org>
parents:
61770
diff
changeset
|
717 "Face used for subscripts." |
ccc8869d7418
(superscript, subscript, tex-math-face)
Lute Kamstra <lute@gnu.org>
parents:
61770
diff
changeset
|
718 :group 'tex) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
719 |
63228
1cde198ddda6
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-392
Miles Bader <miles@gnu.org>
parents:
63101
diff
changeset
|
720 (defface tex-math |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
721 '((t :inherit font-lock-string-face)) |
62811
ccc8869d7418
(superscript, subscript, tex-math-face)
Lute Kamstra <lute@gnu.org>
parents:
61770
diff
changeset
|
722 "Face used to highlight TeX math expressions." |
ccc8869d7418
(superscript, subscript, tex-math-face)
Lute Kamstra <lute@gnu.org>
parents:
61770
diff
changeset
|
723 :group 'tex) |
63228
1cde198ddda6
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-392
Miles Bader <miles@gnu.org>
parents:
63101
diff
changeset
|
724 ;; backward-compatibility alias |
1cde198ddda6
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-392
Miles Bader <miles@gnu.org>
parents:
63101
diff
changeset
|
725 (put 'tex-math-face 'face-alias 'tex-math) |
1cde198ddda6
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-392
Miles Bader <miles@gnu.org>
parents:
63101
diff
changeset
|
726 (defvar tex-math-face 'tex-math) |
1cde198ddda6
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-392
Miles Bader <miles@gnu.org>
parents:
63101
diff
changeset
|
727 |
1cde198ddda6
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-392
Miles Bader <miles@gnu.org>
parents:
63101
diff
changeset
|
728 (defface tex-verbatim |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
729 ;; '((t :inherit font-lock-string-face)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
730 '((t :family "courier")) |
62811
ccc8869d7418
(superscript, subscript, tex-math-face)
Lute Kamstra <lute@gnu.org>
parents:
61770
diff
changeset
|
731 "Face used to highlight TeX verbatim environments." |
ccc8869d7418
(superscript, subscript, tex-math-face)
Lute Kamstra <lute@gnu.org>
parents:
61770
diff
changeset
|
732 :group 'tex) |
63228
1cde198ddda6
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-392
Miles Bader <miles@gnu.org>
parents:
63101
diff
changeset
|
733 ;; backward-compatibility alias |
1cde198ddda6
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-392
Miles Bader <miles@gnu.org>
parents:
63101
diff
changeset
|
734 (put 'tex-verbatim-face 'face-alias 'tex-verbatim) |
1cde198ddda6
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-392
Miles Bader <miles@gnu.org>
parents:
63101
diff
changeset
|
735 (defvar tex-verbatim-face 'tex-verbatim) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
736 |
65839
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
737 (defun tex-font-lock-verb (end) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
738 "Place syntax-table properties on the \verb construct. |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
739 END is the position of the first delimiter after \verb." |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
740 (unless (nth 8 (syntax-ppss end)) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
741 ;; Do nothing if the \verb construct is itself inside a comment or |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
742 ;; verbatim env. |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
743 (save-excursion |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
744 ;; Let's find the end and mark it. |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
745 ;; We used to do it inside tex-font-lock-syntactic-face-function, but |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
746 ;; this leads to funny effects when jumping to the end of the buffer, |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
747 ;; because font-lock applies font-lock-syntactic-keywords to the whole |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
748 ;; preceding text but font-lock-syntactic-face-function only to the |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
749 ;; actually displayed text. |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
750 (goto-char end) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
751 (let ((char (char-before))) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
752 (skip-chars-forward (string ?^ char)) ;; Use `end' ? |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
753 (when (eq (char-syntax (preceding-char)) ?/) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
754 (put-text-property (1- (point)) (point) 'syntax-table '(1))) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
755 (unless (eobp) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
756 (put-text-property (point) (1+ (point)) 'syntax-table '(7)) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
757 ;; Cause the rest of the buffer to be re-fontified. |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
758 ;; (remove-text-properties (1+ (point)) (point-max) '(fontified)) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
759 ))) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
760 "\"")) |
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
761 |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
762 ;; Use string syntax but math face for $...$. |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
763 (defun tex-font-lock-syntactic-face-function (state) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
764 (let ((char (nth 3 state))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
765 (cond |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
766 ((not char) font-lock-comment-face) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
767 ((eq char ?$) tex-math-face) |
65839
8d9f98ffeae4
(tex-font-lock-syntactic-face-function):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65706
diff
changeset
|
768 (t tex-verbatim-face)))) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
769 |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
770 |
85 | 771 (defun tex-define-common-keys (keymap) |
7285 | 772 "Define the keys that we want defined both in TeX mode and in the TeX shell." |
85 | 773 (define-key keymap "\C-c\C-k" 'tex-kill-job) |
774 (define-key keymap "\C-c\C-l" 'tex-recenter-output-buffer) | |
775 (define-key keymap "\C-c\C-q" 'tex-show-print-queue) | |
776 (define-key keymap "\C-c\C-p" 'tex-print) | |
777 (define-key keymap "\C-c\C-v" 'tex-view) | |
4900
be43750c20d2
(tex-define-common-keys): Define menu items.
Richard M. Stallman <rms@gnu.org>
parents:
4768
diff
changeset
|
778 |
be43750c20d2
(tex-define-common-keys): Define menu items.
Richard M. Stallman <rms@gnu.org>
parents:
4768
diff
changeset
|
779 (define-key keymap [menu-bar tex] (cons "TeX" (make-sparse-keymap "TeX"))) |
be43750c20d2
(tex-define-common-keys): Define menu items.
Richard M. Stallman <rms@gnu.org>
parents:
4768
diff
changeset
|
780 |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
781 (define-key keymap [menu-bar tex tex-kill-job] |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
782 '(menu-item "Tex Kill" tex-kill-job :enable (tex-shell-running))) |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
783 (define-key keymap [menu-bar tex tex-recenter-output-buffer] |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
784 '(menu-item "Tex Recenter" tex-recenter-output-buffer |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
785 :enable (get-buffer "*tex-shell*"))) |
4900
be43750c20d2
(tex-define-common-keys): Define menu items.
Richard M. Stallman <rms@gnu.org>
parents:
4768
diff
changeset
|
786 (define-key keymap [menu-bar tex tex-show-print-queue] |
be43750c20d2
(tex-define-common-keys): Define menu items.
Richard M. Stallman <rms@gnu.org>
parents:
4768
diff
changeset
|
787 '("Show Print Queue" . tex-show-print-queue)) |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
788 (define-key keymap [menu-bar tex tex-alt-print] |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
789 '(menu-item "Tex Print (alt printer)" tex-alt-print |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
790 :enable (stringp tex-print-file))) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
791 (define-key keymap [menu-bar tex tex-print] |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
792 '(menu-item "Tex Print" tex-print :enable (stringp tex-print-file))) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
793 (define-key keymap [menu-bar tex tex-view] |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
794 '(menu-item "Tex View" tex-view :enable (stringp tex-print-file)))) |
85 | 795 |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
796 (defvar tex-mode-map |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
797 (let ((map (make-sparse-keymap))) |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
798 (set-keymap-parent map text-mode-map) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
799 (tex-define-common-keys map) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
800 (define-key map "\"" 'tex-insert-quote) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
801 (define-key map "(" 'skeleton-pair-insert-maybe) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
802 (define-key map "{" 'skeleton-pair-insert-maybe) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
803 (define-key map "[" 'skeleton-pair-insert-maybe) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
804 (define-key map "$" 'skeleton-pair-insert-maybe) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
805 (define-key map "\n" 'tex-terminate-paragraph) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
806 (define-key map "\M-\r" 'latex-insert-item) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
807 (define-key map "\C-c}" 'up-list) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
808 (define-key map "\C-c{" 'tex-insert-braces) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
809 (define-key map "\C-c\C-r" 'tex-region) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
810 (define-key map "\C-c\C-b" 'tex-buffer) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
811 (define-key map "\C-c\C-f" 'tex-file) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
812 (define-key map "\C-c\C-c" 'tex-compile) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
813 (define-key map "\C-c\C-i" 'tex-bibtex-file) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
814 (define-key map "\C-c\C-o" 'latex-insert-block) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
815 (define-key map "\C-c\C-e" 'latex-close-block) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
816 (define-key map "\C-c\C-u" 'tex-goto-last-unclosed-latex-block) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
817 (define-key map "\C-c\C-m" 'tex-feed-input) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
818 (define-key map [(control return)] 'tex-feed-input) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
819 (define-key map [menu-bar tex tex-bibtex-file] |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
820 '("BibTeX File" . tex-bibtex-file)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
821 (define-key map [menu-bar tex tex-validate-region] |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
822 '(menu-item "Validate Region" tex-validate-region :enable mark-active)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
823 (define-key map [menu-bar tex tex-validate-buffer] |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
824 '("Validate Buffer" . tex-validate-buffer)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
825 (define-key map [menu-bar tex tex-region] |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
826 '(menu-item "TeX Region" tex-region :enable mark-active)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
827 (define-key map [menu-bar tex tex-buffer] |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
828 '("TeX Buffer" . tex-buffer)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
829 (define-key map [menu-bar tex tex-file] '("TeX File" . tex-file)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
830 map) |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
831 "Keymap shared by TeX modes.") |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
832 |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
833 (defvar latex-mode-map |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
834 (let ((map (make-sparse-keymap))) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
835 (set-keymap-parent map tex-mode-map) |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
836 (define-key map "\C-c\C-s" 'latex-split-block) |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
837 map) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
838 "Keymap for `latex-mode'. See also `tex-mode-map'.") |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
839 |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
840 (defvar plain-tex-mode-map |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
841 (let ((map (make-sparse-keymap))) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
842 (set-keymap-parent map tex-mode-map) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
843 map) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
844 "Keymap for `plain-tex-mode'. See also `tex-mode-map'.") |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
845 |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
846 (defvar tex-shell-map |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
847 (let ((m (make-sparse-keymap))) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
848 (set-keymap-parent m shell-mode-map) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
849 (tex-define-common-keys m) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
850 m) |
7285 | 851 "Keymap for the TeX shell. |
10197
66681eddfd70
Make keymap for tex-shell the shell-mode-map.
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
10190
diff
changeset
|
852 Inherits `shell-mode-map' with a few additions.") |
85 | 853 |
14383
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
854 (defvar tex-face-alist |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
855 '((bold . "{\\bf ") |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
856 (italic . "{\\it ") |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
857 (bold-italic . "{\\bi ") ; hypothetical |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
858 (underline . "\\underline{") |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
859 (default . "{\\rm ")) |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
860 "Alist of face and TeX font name for facemenu.") |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
861 |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
862 (defvar tex-latex-face-alist |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
863 `((italic . "{\\em ") |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
864 ,@tex-face-alist) |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
865 "Alist of face and LaTeX font name for facemenu.") |
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
866 |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
867 ;; This would be a lot simpler if we just used a regexp search, |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
868 ;; but then it would be too slow. |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
869 (defun tex-guess-mode () |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
870 (let ((mode tex-default-mode) slash comment) |
85 | 871 (save-excursion |
872 (goto-char (point-min)) | |
873 (while (and (setq slash (search-forward "\\" nil t)) | |
874 (setq comment (let ((search-end (point))) | |
875 (save-excursion | |
876 (beginning-of-line) | |
877 (search-forward "%" search-end t)))))) | |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
878 (when (and slash (not comment)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
879 (setq mode |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
880 (if (looking-at |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
881 (eval-when-compile |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
882 (concat |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
883 (regexp-opt '("documentstyle" "documentclass" |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
884 "begin" "subsection" "section" |
50943
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
885 "part" "chapter" "newcommand" |
63101
3f08f5c8ef66
(tex-guess-mode): Add RequirePackage.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62909
diff
changeset
|
886 "renewcommand" "RequirePackage") 'words) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
887 "\\|NeedsTeXFormat{LaTeX"))) |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
888 (if (and (looking-at |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
889 "document\\(style\\|class\\)\\(\\[.*\\]\\)?{slides}") |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
890 ;; SliTeX is almost never used any more nowadays. |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
891 (tex-executable-exists-p slitex-run-command)) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
892 'slitex-mode |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
893 'latex-mode) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
894 'plain-tex-mode)))) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
895 (funcall mode))) |
2598
2189edb30955
Removed spurious comment (obsoleted by ;;;###autoload).
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2588
diff
changeset
|
896 |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
897 ;; `tex-mode' plays two roles: it's the parent of several sub-modes |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
898 ;; but it's also the function that chooses between those submodes. |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
899 ;; To tell the difference between those two cases where the function |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
900 ;; might be called, we check `delay-mode-hooks'. |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
901 (define-derived-mode tex-mode text-mode "generic-TeX" |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
902 (tex-common-initialization)) |
50943
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
903 ;; We now move the function and define it again. This gives a warning |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
904 ;; in the byte-compiler :-( but it's difficult to avoid because |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
905 ;; `define-derived-mode' will necessarily define the function once |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
906 ;; and we need to define it a second time for `autoload' to get the |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
907 ;; proper docstring. |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
908 (defalias 'tex-mode-internal (symbol-function 'tex-mode)) |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
909 ;;;###autoload |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
910 (defun tex-mode () |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
911 "Major mode for editing files of input for TeX, LaTeX, or SliTeX. |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
912 Tries to determine (by looking at the beginning of the file) whether |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
913 this file is for plain TeX, LaTeX, or SliTeX and calls `plain-tex-mode', |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
914 `latex-mode', or `slitex-mode', respectively. If it cannot be determined, |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
915 such as if there are no commands in the file, the value of `tex-default-mode' |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
916 says which mode to use." |
50943
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
917 (interactive) |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
918 (if delay-mode-hooks |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
919 ;; We're called from one of the children already. |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
920 (tex-mode-internal) |
654c1513e74a
(tex-mode-syntax-table): ~ is not whitespace.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50592
diff
changeset
|
921 (tex-guess-mode))) |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
922 |
61770
18224d5c1322
(TeX-mode, plain-TeX-mode, LaTeX-mode):
David Kastrup <dak@gnu.org>
parents:
61353
diff
changeset
|
923 ;; The following three autoloaded aliases appear to conflict with |
18224d5c1322
(TeX-mode, plain-TeX-mode, LaTeX-mode):
David Kastrup <dak@gnu.org>
parents:
61353
diff
changeset
|
924 ;; AUCTeX. However, even though AUCTeX uses the mixed case variants |
18224d5c1322
(TeX-mode, plain-TeX-mode, LaTeX-mode):
David Kastrup <dak@gnu.org>
parents:
61353
diff
changeset
|
925 ;; for all mode relevant variables and hooks, the invocation function |
18224d5c1322
(TeX-mode, plain-TeX-mode, LaTeX-mode):
David Kastrup <dak@gnu.org>
parents:
61353
diff
changeset
|
926 ;; and setting of `major-mode' themselves need to be lowercase for |
18224d5c1322
(TeX-mode, plain-TeX-mode, LaTeX-mode):
David Kastrup <dak@gnu.org>
parents:
61353
diff
changeset
|
927 ;; AUCTeX to provide a fully functional user-level replacement. So |
18224d5c1322
(TeX-mode, plain-TeX-mode, LaTeX-mode):
David Kastrup <dak@gnu.org>
parents:
61353
diff
changeset
|
928 ;; these aliases should remain as they are, in particular since AUCTeX |
18224d5c1322
(TeX-mode, plain-TeX-mode, LaTeX-mode):
David Kastrup <dak@gnu.org>
parents:
61353
diff
changeset
|
929 ;; users are likely to use them. |
18224d5c1322
(TeX-mode, plain-TeX-mode, LaTeX-mode):
David Kastrup <dak@gnu.org>
parents:
61353
diff
changeset
|
930 |
269 | 931 ;;;###autoload |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
932 (defalias 'TeX-mode 'tex-mode) |
269 | 933 ;;;###autoload |
24330
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
934 (defalias 'plain-TeX-mode 'plain-tex-mode) |
fee8d10bbb21
(tex-run-command, latex-run-command)
Richard M. Stallman <rms@gnu.org>
parents:
24273
diff
changeset
|
935 ;;;###autoload |
2571
b65cf676a09b
All fsets changed to defaliases.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2307
diff
changeset
|
936 (defalias 'LaTeX-mode 'latex-mode) |
85 | 937 |
256 | 938 ;;;###autoload |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
939 (define-derived-mode plain-tex-mode tex-mode "TeX" |
85 | 940 "Major mode for editing files of input for plain TeX. |
941 Makes $ and } display the characters they match. | |
942 Makes \" insert `` when it seems to be the beginning of a quotation, | |
943 and '' when it appears to be the end; it inserts \" only after a \\. | |
944 | |
945 Use \\[tex-region] to run TeX on the current region, plus a \"header\" | |
946 copied from the top of the file (containing macro definitions, etc.), | |
947 running TeX under a special subshell. \\[tex-buffer] does the whole buffer. | |
948 \\[tex-file] saves the buffer and then processes the file. | |
949 \\[tex-print] prints the .dvi file made by any of these. | |
950 \\[tex-view] previews the .dvi file made by any of these. | |
951 \\[tex-bibtex-file] runs bibtex on the file of the current buffer. | |
952 | |
24222
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
953 Use \\[tex-validate-buffer] to check buffer for paragraphs containing |
85 | 954 mismatched $'s or braces. |
955 | |
956 Special commands: | |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
957 \\{plain-tex-mode-map} |
85 | 958 |
959 Mode variables: | |
960 tex-run-command | |
961 Command string used by \\[tex-region] or \\[tex-buffer]. | |
962 tex-directory | |
963 Directory in which to create temporary files for TeX jobs | |
964 run by \\[tex-region] or \\[tex-buffer]. | |
965 tex-dvi-print-command | |
966 Command string used by \\[tex-print] to print a .dvi file. | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
967 tex-alt-dvi-print-command |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
968 Alternative command string used by \\[tex-print] (when given a prefix |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
969 argument) to print a .dvi file. |
85 | 970 tex-dvi-view-command |
971 Command string used by \\[tex-view] to preview a .dvi file. | |
972 tex-show-queue-command | |
973 Command string used by \\[tex-show-print-queue] to show the print | |
974 queue that \\[tex-print] put your job on. | |
975 | |
7285 | 976 Entering Plain-tex mode runs the hook `text-mode-hook', then the hook |
977 `tex-mode-hook', and finally the hook `plain-tex-mode-hook'. When the | |
978 special subshell is initiated, the hook `tex-shell-hook' is run." | |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
979 (set (make-local-variable 'tex-command) tex-run-command) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
980 (set (make-local-variable 'tex-start-of-header) "%\\*\\*start of header") |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
981 (set (make-local-variable 'tex-end-of-header) "%\\*\\*end of header") |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
982 (set (make-local-variable 'tex-trailer) "\\bye\n")) |
85 | 983 |
256 | 984 ;;;###autoload |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
985 (define-derived-mode latex-mode tex-mode "LaTeX" |
85 | 986 "Major mode for editing files of input for LaTeX. |
987 Makes $ and } display the characters they match. | |
988 Makes \" insert `` when it seems to be the beginning of a quotation, | |
989 and '' when it appears to be the end; it inserts \" only after a \\. | |
990 | |
991 Use \\[tex-region] to run LaTeX on the current region, plus the preamble | |
992 copied from the top of the file (containing \\documentstyle, etc.), | |
993 running LaTeX under a special subshell. \\[tex-buffer] does the whole buffer. | |
994 \\[tex-file] saves the buffer and then processes the file. | |
995 \\[tex-print] prints the .dvi file made by any of these. | |
996 \\[tex-view] previews the .dvi file made by any of these. | |
997 \\[tex-bibtex-file] runs bibtex on the file of the current buffer. | |
998 | |
24222
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
999 Use \\[tex-validate-buffer] to check buffer for paragraphs containing |
85 | 1000 mismatched $'s or braces. |
1001 | |
1002 Special commands: | |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1003 \\{latex-mode-map} |
85 | 1004 |
1005 Mode variables: | |
1006 latex-run-command | |
1007 Command string used by \\[tex-region] or \\[tex-buffer]. | |
1008 tex-directory | |
1009 Directory in which to create temporary files for LaTeX jobs | |
1010 run by \\[tex-region] or \\[tex-buffer]. | |
1011 tex-dvi-print-command | |
1012 Command string used by \\[tex-print] to print a .dvi file. | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1013 tex-alt-dvi-print-command |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1014 Alternative command string used by \\[tex-print] (when given a prefix |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1015 argument) to print a .dvi file. |
85 | 1016 tex-dvi-view-command |
1017 Command string used by \\[tex-view] to preview a .dvi file. | |
1018 tex-show-queue-command | |
1019 Command string used by \\[tex-show-print-queue] to show the print | |
1020 queue that \\[tex-print] put your job on. | |
1021 | |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
1022 Entering Latex mode runs the hook `text-mode-hook', then |
7285 | 1023 `tex-mode-hook', and finally `latex-mode-hook'. When the special |
1024 subshell is initiated, `tex-shell-hook' is run." | |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
1025 (set (make-local-variable 'tex-command) latex-run-command) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
1026 (set (make-local-variable 'tex-start-of-header) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
1027 "\\\\document\\(style\\|class\\)") |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
1028 (set (make-local-variable 'tex-end-of-header) "\\\\begin\\s-*{document}") |
53185
85f57f9a360f
(latex-mode): `tex-trailer' is not a regexp.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52957
diff
changeset
|
1029 (set (make-local-variable 'tex-trailer) "\\end{document}\n") |
5425
3dd5ff54e1cd
(slitex-mode, latex-mode): Set paragraph-start and
Richard M. Stallman <rms@gnu.org>
parents:
5262
diff
changeset
|
1030 ;; A line containing just $$ is treated as a paragraph separator. |
3dd5ff54e1cd
(slitex-mode, latex-mode): Set paragraph-start and
Richard M. Stallman <rms@gnu.org>
parents:
5262
diff
changeset
|
1031 ;; A line starting with $$ starts a paragraph, |
3dd5ff54e1cd
(slitex-mode, latex-mode): Set paragraph-start and
Richard M. Stallman <rms@gnu.org>
parents:
5262
diff
changeset
|
1032 ;; but does not separate paragraphs if it has more stuff on it. |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1033 (setq paragraph-start |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
1034 (concat "[ \t]*\\(\\$\\$\\|" |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1035 "\\\\[][]\\|" |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1036 "\\\\" (regexp-opt (append |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1037 (mapcar 'car latex-section-alist) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1038 '("begin" "label" "end" |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1039 "item" "bibitem" "newline" "noindent" |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1040 "newpage" "footnote" "marginpar" |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1041 "parbox" "caption")) t) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1042 "\\>\\|\\\\[a-z]*" (regexp-opt '("space" "skip" "page") t) |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1043 "\\>\\)")) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1044 (setq paragraph-separate |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1045 (concat "[\f%]\\|[ \t]*\\($\\|" |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1046 "\\\\[][]\\|" |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1047 "\\\\" (regexp-opt (append |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1048 (mapcar 'car latex-section-alist) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1049 '("begin" "label" "end" )) t) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1050 "\\>\\|\\\\\\(" (regexp-opt '("item" "bibitem" "newline" |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1051 "noindent" "newpage" "footnote" |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1052 "marginpar" "parbox" "caption")) |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1053 "\\|\\$\\$\\|[a-z]*\\(space\\|skip\\|page[a-z]*\\)" |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1054 "\\>\\)[ \t]*\\($\\|%\\)\\)")) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1055 (set (make-local-variable 'imenu-create-index-function) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1056 'latex-imenu-create-index) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1057 (set (make-local-variable 'tex-face-alist) tex-latex-face-alist) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1058 (add-hook 'fill-nobreak-predicate 'latex-fill-nobreak-predicate nil t) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1059 (set (make-local-variable 'indent-line-function) 'latex-indent) |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1060 (set (make-local-variable 'fill-indent-according-to-mode) t) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1061 (set (make-local-variable 'outline-regexp) latex-outline-regexp) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1062 (set (make-local-variable 'outline-level) 'latex-outline-level) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1063 (set (make-local-variable 'forward-sexp-function) 'latex-forward-sexp) |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
1064 (set (make-local-variable 'skeleton-end-hook) nil)) |
85 | 1065 |
4768
9d84105b1248
(slitex-mode): Add ###autoload magic cookie.
Brian Fox <bfox@gnu.org>
parents:
4376
diff
changeset
|
1066 ;;;###autoload |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1067 (define-derived-mode slitex-mode latex-mode "SliTeX" |
85 | 1068 "Major mode for editing files of input for SliTeX. |
1069 Makes $ and } display the characters they match. | |
1070 Makes \" insert `` when it seems to be the beginning of a quotation, | |
1071 and '' when it appears to be the end; it inserts \" only after a \\. | |
1072 | |
1073 Use \\[tex-region] to run SliTeX on the current region, plus the preamble | |
1074 copied from the top of the file (containing \\documentstyle, etc.), | |
1075 running SliTeX under a special subshell. \\[tex-buffer] does the whole buffer. | |
1076 \\[tex-file] saves the buffer and then processes the file. | |
1077 \\[tex-print] prints the .dvi file made by any of these. | |
1078 \\[tex-view] previews the .dvi file made by any of these. | |
1079 \\[tex-bibtex-file] runs bibtex on the file of the current buffer. | |
1080 | |
24222
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1081 Use \\[tex-validate-buffer] to check buffer for paragraphs containing |
85 | 1082 mismatched $'s or braces. |
1083 | |
1084 Special commands: | |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1085 \\{slitex-mode-map} |
85 | 1086 |
1087 Mode variables: | |
1088 slitex-run-command | |
1089 Command string used by \\[tex-region] or \\[tex-buffer]. | |
1090 tex-directory | |
1091 Directory in which to create temporary files for SliTeX jobs | |
1092 run by \\[tex-region] or \\[tex-buffer]. | |
1093 tex-dvi-print-command | |
1094 Command string used by \\[tex-print] to print a .dvi file. | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1095 tex-alt-dvi-print-command |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1096 Alternative command string used by \\[tex-print] (when given a prefix |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1097 argument) to print a .dvi file. |
85 | 1098 tex-dvi-view-command |
1099 Command string used by \\[tex-view] to preview a .dvi file. | |
1100 tex-show-queue-command | |
1101 Command string used by \\[tex-show-print-queue] to show the print | |
1102 queue that \\[tex-print] put your job on. | |
1103 | |
7285 | 1104 Entering SliTeX mode runs the hook `text-mode-hook', then the hook |
1105 `tex-mode-hook', then the hook `latex-mode-hook', and finally the hook | |
1106 `slitex-mode-hook'. When the special subshell is initiated, the hook | |
1107 `tex-shell-hook' is run." | |
85 | 1108 (setq tex-command slitex-run-command) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1109 (setq tex-start-of-header "\\\\documentstyle{slides}\\|\\\\documentclass{slides}")) |
85 | 1110 |
1111 (defun tex-common-initialization () | |
18587
3290767e31d8
(tex-common-initialization):
Richard M. Stallman <rms@gnu.org>
parents:
18393
diff
changeset
|
1112 ;; Regexp isearch should accept newline and formfeed as whitespace. |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1113 (set (make-local-variable 'search-whitespace-regexp) "[ \t\r\n\f]+") |
5262
b3a689b41d39
(tex-common-initialization): Make paragraph-start
Richard M. Stallman <rms@gnu.org>
parents:
5088
diff
changeset
|
1114 ;; A line containing just $$ is treated as a paragraph separator. |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1115 (set (make-local-variable 'paragraph-start) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1116 "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$") |
5425
3dd5ff54e1cd
(slitex-mode, latex-mode): Set paragraph-start and
Richard M. Stallman <rms@gnu.org>
parents:
5262
diff
changeset
|
1117 ;; A line starting with $$ starts a paragraph, |
3dd5ff54e1cd
(slitex-mode, latex-mode): Set paragraph-start and
Richard M. Stallman <rms@gnu.org>
parents:
5262
diff
changeset
|
1118 ;; but does not separate paragraphs if it has more stuff on it. |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1119 (set (make-local-variable 'paragraph-separate) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1120 "[ \t]*$\\|[\f\\\\%]\\|[ \t]*\\$\\$[ \t]*$") |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1121 (set (make-local-variable 'comment-start) "%") |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1122 (set (make-local-variable 'comment-add) 1) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1123 (set (make-local-variable 'comment-start-skip) |
48120
16ca3f0efd84
(tex-common-initialization): comment-start-skip shouldn't match on next line.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46367
diff
changeset
|
1124 "\\(\\(^\\|[^\\\n]\\)\\(\\\\\\\\\\)*\\)\\(%+ *\\)") |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1125 (set (make-local-variable 'parse-sexp-ignore-comments) t) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1126 (set (make-local-variable 'compare-windows-whitespace) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1127 'tex-categorize-whitespace) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1128 (set (make-local-variable 'facemenu-add-face-function) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1129 (lambda (face end) |
60232
dd2690f78878
(tex-font-lock-keywords-3): #n is atomic.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59996
diff
changeset
|
1130 (or (cdr (assq face tex-face-alist)) |
dd2690f78878
(tex-font-lock-keywords-3): #n is atomic.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
59996
diff
changeset
|
1131 (error "Face %s not configured for %s mode" face mode-name)))) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1132 (set (make-local-variable 'facemenu-end-add-face) "}") |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1133 (set (make-local-variable 'facemenu-remove-face-function) t) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1134 (set (make-local-variable 'font-lock-defaults) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1135 '((tex-font-lock-keywords tex-font-lock-keywords-1 |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1136 tex-font-lock-keywords-2 tex-font-lock-keywords-3) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1137 nil nil ((?$ . "\"")) nil |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1138 ;; Who ever uses that anyway ??? |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1139 (font-lock-mark-block-function . mark-paragraph) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1140 (font-lock-syntactic-face-function |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1141 . tex-font-lock-syntactic-face-function) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1142 (font-lock-unfontify-region-function |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1143 . tex-font-lock-unfontify-region) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1144 (font-lock-syntactic-keywords |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1145 . tex-font-lock-syntactic-keywords) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1146 (parse-sexp-lookup-properties . t))) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1147 ;; TABs in verbatim environments don't do what you think. |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1148 (set (make-local-variable 'indent-tabs-mode) nil) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1149 ;; Other vars that should be buffer-local. |
85 | 1150 (make-local-variable 'tex-command) |
1151 (make-local-variable 'tex-start-of-header) | |
1152 (make-local-variable 'tex-end-of-header) | |
1153 (make-local-variable 'tex-trailer)) | |
1154 | |
1155 (defun tex-categorize-whitespace (backward-limit) | |
1156 ;; compare-windows-whitespace is set to this. | |
1157 ;; This is basically a finite-state machine. | |
1158 ;; Returns a symbol telling how TeX would treat | |
1159 ;; the whitespace we are looking at: null, space, or par. | |
1160 (let ((category 'null) | |
1161 (not-finished t)) | |
1162 (skip-chars-backward " \t\n\f" backward-limit) | |
1163 (while not-finished | |
1164 (cond ((looking-at "[ \t]+") | |
1165 (goto-char (match-end 0)) | |
18931
43b52e6a35c2
(tex-categorize-whitespace): Use eq, not eql.
Richard M. Stallman <rms@gnu.org>
parents:
18587
diff
changeset
|
1166 (if (eq category 'null) |
85 | 1167 (setq category 'space))) |
1168 ((looking-at "\n") | |
18931
43b52e6a35c2
(tex-categorize-whitespace): Use eq, not eql.
Richard M. Stallman <rms@gnu.org>
parents:
18587
diff
changeset
|
1169 (cond ((eq category 'newline) |
85 | 1170 (setq category 'par) |
1171 (setq not-finished nil)) | |
1172 (t | |
1173 (setq category 'newline) ;a strictly internal state | |
1174 (goto-char (match-end 0))))) | |
1175 ((looking-at "\f+") | |
1176 (setq category 'par) | |
1177 (setq not-finished nil)) | |
1178 (t | |
1179 (setq not-finished nil)))) | |
1180 (skip-chars-forward " \t\n\f") | |
18931
43b52e6a35c2
(tex-categorize-whitespace): Use eq, not eql.
Richard M. Stallman <rms@gnu.org>
parents:
18587
diff
changeset
|
1181 (if (eq category 'newline) |
85 | 1182 'space ;TeX doesn't distinguish |
1183 category))) | |
1184 | |
1185 (defun tex-insert-quote (arg) | |
1186 "Insert the appropriate quote marks for TeX. | |
2836
d95acb2243f9
(tex-insert-quote): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2598
diff
changeset
|
1187 Inserts the value of `tex-open-quote' (normally ``) or `tex-close-quote' |
d95acb2243f9
(tex-insert-quote): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
2598
diff
changeset
|
1188 \(normally '') depending on the context. With prefix argument, always |
85 | 1189 inserts \" characters." |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1190 (interactive "*P") |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1191 (if (or arg (memq (char-syntax (preceding-char)) '(?/ ?\\)) |
65706
183bad3fad1f
(tex-insert-quote, latex-indent): Quote face names.
Juanma Barranquero <lekktu@gmail.com>
parents:
65683
diff
changeset
|
1192 (eq (get-text-property (point) 'face) 'tex-verbatim) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1193 (save-excursion |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1194 (backward-char (length tex-open-quote)) |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1195 (when (or (looking-at (regexp-quote tex-open-quote)) |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1196 (looking-at (regexp-quote tex-close-quote))) |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1197 (delete-char (length tex-open-quote)) |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1198 t))) |
85 | 1199 (self-insert-command (prefix-numeric-value arg)) |
64060
fa1dc4af6eee
(tex-file, tex-run, tex-view): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63228
diff
changeset
|
1200 (insert (if (memq (char-syntax (preceding-char)) '(?\( ?> ?\s)) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1201 tex-open-quote tex-close-quote)))) |
85 | 1202 |
24222
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1203 (defun tex-validate-buffer () |
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1204 "Check current buffer for paragraphs containing mismatched braces or $s. |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1205 Their positions are recorded in the buffer `*Occur*'. |
24222
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1206 To find a particular invalidity from `*Occur*', switch to that buffer |
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1207 and type C-c C-c or click with mouse-2 |
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1208 on the line for the invalidity you want to see." |
85 | 1209 (interactive) |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1210 (let ((buffer (current-buffer)) |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1211 (prevpos (point-min)) |
24222
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1212 (linenum nil) |
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1213 (num-matches 0)) |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1214 (with-output-to-temp-buffer "*Occur*" |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1215 (princ "Mismatches:\n") |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
1216 (with-current-buffer standard-output |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1217 (occur-mode) |
45055
b9c9078b245d
(tex-validate-buffer): Use `occur-revert-arguments' instead of setting
Colin Walters <walters@gnu.org>
parents:
44884
diff
changeset
|
1218 ;; This won't actually work...Really, this whole thing should |
b9c9078b245d
(tex-validate-buffer): Use `occur-revert-arguments' instead of setting
Colin Walters <walters@gnu.org>
parents:
44884
diff
changeset
|
1219 ;; be rewritten instead of being a hack on top of occur. |
b9c9078b245d
(tex-validate-buffer): Use `occur-revert-arguments' instead of setting
Colin Walters <walters@gnu.org>
parents:
44884
diff
changeset
|
1220 (setq occur-revert-arguments (list nil 0 (list buffer)))) |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1221 (save-excursion |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1222 (goto-char (point-max)) |
78842
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1223 ;; Do a little shimmy to place point at the end of the last |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1224 ;; "real" paragraph. Need to avoid validating across an \end, |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1225 ;; because that blows up latex-forward-sexp. |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1226 (backward-paragraph) |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1227 (forward-paragraph) |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1228 (while (not (bobp)) |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1229 ;; Scan the previous paragraph for invalidities. |
78842
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1230 (backward-paragraph) |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1231 (save-excursion |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1232 (or (tex-validate-region (point) (save-excursion |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1233 (forward-paragraph) |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1234 (point))) |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1235 (let ((end (line-beginning-position 2)) |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1236 start tem) |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1237 (beginning-of-line) |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1238 (setq start (point)) |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1239 ;; Keep track of line number as we scan, |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1240 ;; in a cumulative fashion. |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1241 (if linenum |
78842
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1242 (setq linenum (- linenum |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1243 (count-lines prevpos (point)))) |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1244 (setq linenum (1+ (count-lines 1 start)))) |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1245 (setq prevpos (point)) |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
1246 ;; Mention this mismatch in *Occur*. |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1247 ;; Since we scan from end of buffer to beginning, |
24222
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1248 ;; add each mismatch at the beginning of *Occur*. |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1249 (save-excursion |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1250 (setq tem (point-marker)) |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1251 (set-buffer standard-output) |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1252 (goto-char (point-min)) |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1253 ;; Skip "Mismatches:" header line. |
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1254 (forward-line 1) |
24222
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1255 (setq num-matches (1+ num-matches)) |
4376
109294166e68
(validate-tex-buffer): Record mismatches in *Occur*.
Richard M. Stallman <rms@gnu.org>
parents:
3591
diff
changeset
|
1256 (insert-buffer-substring buffer start end) |
24222
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1257 (let (text-beg (text-end (point-marker))) |
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1258 (forward-char (- start end)) |
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1259 (setq text-beg (point-marker)) |
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
1260 (insert (format "%3d: " linenum)) |
38083
745b05b3e5ed
(tex-validate-buffer): Add help-echo to mouse-highlighted text.
Eli Zaretskii <eliz@gnu.org>
parents:
37952
diff
changeset
|
1261 (add-text-properties |
745b05b3e5ed
(tex-validate-buffer): Add help-echo to mouse-highlighted text.
Eli Zaretskii <eliz@gnu.org>
parents:
37952
diff
changeset
|
1262 text-beg (- text-end 1) |
745b05b3e5ed
(tex-validate-buffer): Add help-echo to mouse-highlighted text.
Eli Zaretskii <eliz@gnu.org>
parents:
37952
diff
changeset
|
1263 '(mouse-face highlight |
78842
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1264 help-echo |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1265 "mouse-2: go to this invalidity")) |
33789
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
1266 (put-text-property text-beg (- text-end 1) |
78842
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1267 'occur-target tem)))))))) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1268 (with-current-buffer standard-output |
56792
db21eaa33109
(tex-validate-buffer): Distinguish between 0, 1, and many mismatches.
John Paul Wallington <jpw@pobox.com>
parents:
55677
diff
changeset
|
1269 (let ((no-matches (zerop num-matches))) |
db21eaa33109
(tex-validate-buffer): Distinguish between 0, 1, and many mismatches.
John Paul Wallington <jpw@pobox.com>
parents:
55677
diff
changeset
|
1270 (if no-matches |
db21eaa33109
(tex-validate-buffer): Distinguish between 0, 1, and many mismatches.
John Paul Wallington <jpw@pobox.com>
parents:
55677
diff
changeset
|
1271 (insert "None!\n")) |
db21eaa33109
(tex-validate-buffer): Distinguish between 0, 1, and many mismatches.
John Paul Wallington <jpw@pobox.com>
parents:
55677
diff
changeset
|
1272 (if (interactive-p) |
56843
4520af567a84
(tex-validate-buffer): Use distinct strings rather than
John Paul Wallington <jpw@pobox.com>
parents:
56792
diff
changeset
|
1273 (message (cond (no-matches "No mismatches found") |
4520af567a84
(tex-validate-buffer): Use distinct strings rather than
John Paul Wallington <jpw@pobox.com>
parents:
56792
diff
changeset
|
1274 ((= num-matches 1) "1 mismatch found") |
4520af567a84
(tex-validate-buffer): Use distinct strings rather than
John Paul Wallington <jpw@pobox.com>
parents:
56792
diff
changeset
|
1275 (t "%d mismatches found")) |
4520af567a84
(tex-validate-buffer): Use distinct strings rather than
John Paul Wallington <jpw@pobox.com>
parents:
56792
diff
changeset
|
1276 num-matches))))))) |
85 | 1277 |
1278 (defun tex-validate-region (start end) | |
1279 "Check for mismatched braces or $'s in region. | |
1280 Returns t if no mismatches. Returns nil and moves point to suspect | |
1281 area if a mismatch is found." | |
1282 (interactive "r") | |
1283 (let ((failure-point nil) (max-possible-sexps (- end start))) | |
1284 (save-excursion | |
1285 (condition-case () | |
1286 (save-restriction | |
1287 (narrow-to-region start end) | |
20203
f1a4588c8075
(tex-validate-region): Really check
Karl Heuer <kwzh@gnu.org>
parents:
18931
diff
changeset
|
1288 ;; First check that the open and close parens balance in numbers. |
85 | 1289 (goto-char start) |
78842
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1290 (while (and (not (eobp)) |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1291 (<= 0 (setq max-possible-sexps |
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1292 (1- max-possible-sexps)))) |
20203
f1a4588c8075
(tex-validate-region): Really check
Karl Heuer <kwzh@gnu.org>
parents:
18931
diff
changeset
|
1293 (forward-sexp 1)) |
f1a4588c8075
(tex-validate-region): Really check
Karl Heuer <kwzh@gnu.org>
parents:
18931
diff
changeset
|
1294 ;; Now check that like matches like. |
f1a4588c8075
(tex-validate-region): Really check
Karl Heuer <kwzh@gnu.org>
parents:
18931
diff
changeset
|
1295 (goto-char start) |
58753
b854b191862d
(tex-validate-region): Obey syntax-table text properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58696
diff
changeset
|
1296 (while (re-search-forward "\\s(" nil t) |
b854b191862d
(tex-validate-region): Obey syntax-table text properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58696
diff
changeset
|
1297 (save-excursion |
b854b191862d
(tex-validate-region): Obey syntax-table text properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58696
diff
changeset
|
1298 (let ((pos (match-beginning 0))) |
b854b191862d
(tex-validate-region): Obey syntax-table text properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58696
diff
changeset
|
1299 (goto-char pos) |
84711
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1300 (skip-chars-backward "\\\\") ; escaped parens |
20203
f1a4588c8075
(tex-validate-region): Really check
Karl Heuer <kwzh@gnu.org>
parents:
18931
diff
changeset
|
1301 (forward-sexp 1) |
58753
b854b191862d
(tex-validate-region): Obey syntax-table text properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58696
diff
changeset
|
1302 (or (eq (preceding-char) (cdr (syntax-after pos))) |
b854b191862d
(tex-validate-region): Obey syntax-table text properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58696
diff
changeset
|
1303 (eq (char-after pos) (cdr (syntax-after (1- (point))))) |
b854b191862d
(tex-validate-region): Obey syntax-table text properties.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
58696
diff
changeset
|
1304 (error "Mismatched parentheses")))))) |
85 | 1305 (error |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
1306 (skip-syntax-forward " .>") |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
1307 (setq failure-point (point))))) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1308 (if failure-point (goto-char failure-point)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1309 (not failure-point))) |
85 | 1310 |
1311 (defun tex-terminate-paragraph (inhibit-validation) | |
1312 "Insert two newlines, breaking a paragraph for TeX. | |
7285 | 1313 Check for mismatched braces or $s in paragraph being terminated. |
85 | 1314 A prefix arg inhibits the checking." |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1315 (interactive "*P") |
85 | 1316 (or inhibit-validation |
1317 (save-excursion | |
78830
f4f2cb314448
(tex-terminate-paragraph): Use backward-paragraph.
Glenn Morris <rgm@gnu.org>
parents:
78818
diff
changeset
|
1318 ;; For the purposes of this, a "paragraph" is a block of text |
f4f2cb314448
(tex-terminate-paragraph): Use backward-paragraph.
Glenn Morris <rgm@gnu.org>
parents:
78818
diff
changeset
|
1319 ;; wherein all the brackets etc are expected to be balanced. It |
f4f2cb314448
(tex-terminate-paragraph): Use backward-paragraph.
Glenn Morris <rgm@gnu.org>
parents:
78818
diff
changeset
|
1320 ;; may start after a blank line (ie a "proper" paragraph), or |
f4f2cb314448
(tex-terminate-paragraph): Use backward-paragraph.
Glenn Morris <rgm@gnu.org>
parents:
78818
diff
changeset
|
1321 ;; a begin{} or end{} block, etc. |
85 | 1322 (tex-validate-region |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
1323 (save-excursion |
78830
f4f2cb314448
(tex-terminate-paragraph): Use backward-paragraph.
Glenn Morris <rgm@gnu.org>
parents:
78818
diff
changeset
|
1324 (backward-paragraph) |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
1325 (point)) |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
1326 (point))) |
85 | 1327 (message "Paragraph being closed appears to contain a mismatch")) |
1328 (insert "\n\n")) | |
1329 | |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1330 (define-skeleton tex-insert-braces |
85 | 1331 "Make a pair of braces and be poised to type inside of them." |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1332 nil |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1333 ?\{ _ ?}) |
85 | 1334 |
21121
dd5c2baa6674
(latex-mode): Set fill-nobreak-predicate.
Richard M. Stallman <rms@gnu.org>
parents:
20203
diff
changeset
|
1335 ;; This function is used as the value of fill-nobreak-predicate |
dd5c2baa6674
(latex-mode): Set fill-nobreak-predicate.
Richard M. Stallman <rms@gnu.org>
parents:
20203
diff
changeset
|
1336 ;; in LaTeX mode. Its job is to prevent line-breaking inside |
dd5c2baa6674
(latex-mode): Set fill-nobreak-predicate.
Richard M. Stallman <rms@gnu.org>
parents:
20203
diff
changeset
|
1337 ;; of a \verb construct. |
dd5c2baa6674
(latex-mode): Set fill-nobreak-predicate.
Richard M. Stallman <rms@gnu.org>
parents:
20203
diff
changeset
|
1338 (defun latex-fill-nobreak-predicate () |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1339 (save-excursion |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1340 (skip-chars-backward " ") |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1341 ;; Don't break after \ since `\ ' has special meaning. |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1342 (or (and (not (bobp)) (memq (char-syntax (char-before)) '(?\\ ?/))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1343 (let ((opoint (point)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1344 inside) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1345 (beginning-of-line) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1346 (while (re-search-forward "\\\\verb\\(.\\)" opoint t) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1347 (unless (re-search-forward (regexp-quote (match-string 1)) opoint t) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1348 (setq inside t))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1349 inside)))) |
21121
dd5c2baa6674
(latex-mode): Set fill-nobreak-predicate.
Richard M. Stallman <rms@gnu.org>
parents:
20203
diff
changeset
|
1350 |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1351 (defvar latex-block-default "enumerate") |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1352 |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1353 (defvar latex-block-args-alist |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1354 '(("array" nil ?\{ (skeleton-read "Format: ") ?\}) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1355 ("tabular" nil ?\{ (skeleton-read "Format: ") ?\}) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1356 ("minipage" nil ?\{ (skeleton-read "Size: ") ?\}) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1357 ("picture" nil ?\( (skeleton-read "SizeX,SizeY: ") ?\)) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1358 ;; FIXME: This is right for Prosper, but not for seminar. |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1359 ;; ("slide" nil ?\{ (skeleton-read "Title: ") ?\}) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1360 ) |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1361 "Skeleton element to use for arguments to particular environments. |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1362 Every element of the list has the form (NAME . SKEL-ELEM) where NAME is |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1363 the name of the environment and SKEL-ELEM is an element to use in |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1364 a skeleton (see `skeleton-insert').") |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1365 |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1366 (defvar latex-block-body-alist |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1367 '(("enumerate" nil '(latex-insert-item) > _) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1368 ("itemize" nil '(latex-insert-item) > _) |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1369 ("table" nil "\\caption{" > (skeleton-read "Caption: ") "}" > \n |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1370 '(if (and (boundp 'reftex-mode) reftex-mode) (reftex-label "table")) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1371 \n _) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1372 ("figure" nil > _ \n "\\caption{" > (skeleton-read "Caption: ") "}" > \n |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1373 '(if (and (boundp 'reftex-mode) reftex-mode) (reftex-label "table")))) |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1374 "Skeleton element to use for the body of particular environments. |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1375 Every element of the list has the form (NAME . SKEL-ELEM) where NAME is |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1376 the name of the environment and SKEL-ELEM is an element to use in |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1377 a skeleton (see `skeleton-insert').") |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1378 |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1379 ;; Like tex-insert-braces, but for LaTeX. |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1380 (defalias 'tex-latex-block 'latex-insert-block) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1381 (define-skeleton latex-insert-block |
51525
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
1382 "Create a matching pair of lines \\begin{NAME} and \\end{NAME} at point. |
85 | 1383 Puts point on a blank line between them." |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1384 (let ((choice (completing-read (format "LaTeX block name [%s]: " |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1385 latex-block-default) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1386 (append latex-block-names |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1387 latex-standard-block-names) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1388 nil nil nil nil latex-block-default))) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1389 (setq latex-block-default choice) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1390 (unless (or (member choice latex-standard-block-names) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1391 (member choice latex-block-names)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1392 ;; Remember new block names for later completion. |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1393 (push choice latex-block-names)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1394 choice) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1395 \n "\\begin{" str "}" |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1396 (cdr (assoc str latex-block-args-alist)) |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1397 > \n (or (cdr (assoc str latex-block-body-alist)) '(nil > _)) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1398 (unless (bolp) '\n) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1399 "\\end{" str "}" > \n) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1400 |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1401 (define-skeleton latex-insert-item |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1402 "Insert a \item macro." |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1403 nil |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1404 \n "\\item " >) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1405 |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1406 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1407 ;;;; |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1408 ;;;; LaTeX syntax navigation |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1409 ;;;; |
85 | 1410 |
51533
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1411 (defmacro tex-search-noncomment (&rest body) |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1412 "Execute BODY as long as it return non-nil and point is in a comment. |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1413 Return the value returned by the last execution of BODY." |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1414 (declare (debug t)) |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1415 (let ((res-sym (make-symbol "result"))) |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1416 `(let (,res-sym) |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1417 (while |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1418 (and (setq ,res-sym (progn ,@body)) |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1419 (save-excursion (skip-chars-backward "^\n%") (not (bolp))))) |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1420 ,res-sym))) |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1421 |
85 | 1422 (defun tex-last-unended-begin () |
7285 | 1423 "Leave point at the beginning of the last `\\begin{...}' that is unended." |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1424 (condition-case nil |
51533
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1425 (while (and (tex-search-noncomment |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1426 (re-search-backward "\\\\\\(begin\\|end\\)\\s *{")) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1427 (looking-at "\\\\end")) |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1428 (tex-last-unended-begin)) |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1429 (search-failed (error "Couldn't find unended \\begin")))) |
85 | 1430 |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1431 (defun tex-next-unmatched-end () |
78842
675e2e2bd67c
(tex-validate-buffer): Use paragraph motion functions, rather than
Glenn Morris <rgm@gnu.org>
parents:
78830
diff
changeset
|
1432 "Leave point at the end of the next `\\end' that is unmatched." |
51533
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1433 (while (and (tex-search-noncomment |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
1434 (re-search-forward "\\\\\\(begin\\|end\\)\\s *{[^}]+}")) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1435 (save-excursion (goto-char (match-beginning 0)) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1436 (looking-at "\\\\begin"))) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1437 (tex-next-unmatched-end))) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1438 |
84711
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1439 (defun tex-next-unmatched-eparen (otype) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1440 "Leave point after the next unmatched escaped closing parenthesis. |
84756
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1441 The string OTYPE is an opening parenthesis type: `(', `{', or `['." |
84711
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1442 (condition-case nil |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1443 (let ((ctype (char-to-string (cdr (aref (syntax-table) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1444 (string-to-char otype)))))) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1445 (while (and (tex-search-noncomment |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1446 (re-search-forward (format "\\\\[%s%s]" ctype otype))) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1447 (save-excursion |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1448 (goto-char (match-beginning 0)) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1449 (looking-at (format "\\\\%s" (regexp-quote otype))))) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1450 (tex-next-unmatched-eparen otype))) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1451 (wrong-type-argument (error "Unknown opening parenthesis type: %s" otype)) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1452 (search-failed (error "Couldn't find closing escaped paren")))) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1453 |
84756
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1454 (defun tex-last-unended-eparen (ctype) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1455 "Leave point at the start of the last unended escaped opening parenthesis. |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1456 The string CTYPE is a closing parenthesis type: `)', `}', or `]'." |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1457 (condition-case nil |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1458 (let ((otype (char-to-string (cdr (aref (syntax-table) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1459 (string-to-char ctype)))))) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1460 (while (and (tex-search-noncomment |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1461 (re-search-backward (format "\\\\[%s%s]" ctype otype))) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1462 (looking-at (format "\\\\%s" (regexp-quote ctype)))) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1463 (tex-last-unended-eparen ctype))) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1464 (wrong-type-argument (error "Unknown opening parenthesis type: %s" ctype)) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1465 (search-failed (error "Couldn't find unended escaped paren")))) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1466 |
7297
a480d11d5594
(tex-goto-last-unclosed-latex-block): New function. Bound to C-c C-u in
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7285
diff
changeset
|
1467 (defun tex-goto-last-unclosed-latex-block () |
a480d11d5594
(tex-goto-last-unclosed-latex-block): New function. Bound to C-c C-u in
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7285
diff
changeset
|
1468 "Move point to the last unclosed \\begin{...}. |
a480d11d5594
(tex-goto-last-unclosed-latex-block): New function. Bound to C-c C-u in
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7285
diff
changeset
|
1469 Mark is left at original location." |
a480d11d5594
(tex-goto-last-unclosed-latex-block): New function. Bound to C-c C-u in
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7285
diff
changeset
|
1470 (interactive) |
a480d11d5594
(tex-goto-last-unclosed-latex-block): New function. Bound to C-c C-u in
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7285
diff
changeset
|
1471 (let ((spot)) |
a480d11d5594
(tex-goto-last-unclosed-latex-block): New function. Bound to C-c C-u in
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7285
diff
changeset
|
1472 (save-excursion |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1473 (tex-last-unended-begin) |
7297
a480d11d5594
(tex-goto-last-unclosed-latex-block): New function. Bound to C-c C-u in
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7285
diff
changeset
|
1474 (setq spot (point))) |
a480d11d5594
(tex-goto-last-unclosed-latex-block): New function. Bound to C-c C-u in
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7285
diff
changeset
|
1475 (push-mark) |
a480d11d5594
(tex-goto-last-unclosed-latex-block): New function. Bound to C-c C-u in
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7285
diff
changeset
|
1476 (goto-char spot))) |
a480d11d5594
(tex-goto-last-unclosed-latex-block): New function. Bound to C-c C-u in
Edward M. Reingold <reingold@emr.cs.iit.edu>
parents:
7285
diff
changeset
|
1477 |
84756
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1478 ;; Don't think this one actually _needs_ (for the purposes of |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1479 ;; tex-mode) to handle escaped parens. |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1480 (defun latex-backward-sexp-1 () |
84756
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1481 "Like (backward-sexp 1) but aware of multi-char elements and escaped parens." |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1482 (let ((pos (point)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1483 (forward-sexp-function)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1484 (backward-sexp 1) |
84756
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1485 (cond ((looking-at "\\\\\\(begin\\>\\|[[({]\\)") |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1486 (signal 'scan-error |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1487 (list "Containing expression ends prematurely" |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1488 (point) (prog1 (point) (goto-char pos))))) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1489 ((looking-at "\\\\\\([])}]\\)") |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1490 (tex-last-unended-eparen (match-string 1))) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1491 ((eq (char-after) ?{) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1492 (let ((newpos (point))) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1493 (when (ignore-errors (backward-sexp 1) t) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1494 (if (or (looking-at "\\\\end\\>") |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1495 ;; In case the \\ ends a verbatim section. |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1496 (and (looking-at "end\\>") (eq (char-before) ?\\))) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1497 (tex-last-unended-begin) |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1498 (goto-char newpos)))))))) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1499 |
84711
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1500 ;; Note this does not handle things like mismatched brackets inside |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1501 ;; begin/end blocks. |
84756
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1502 ;; Needs to handle escaped parens for tex-validate-*. |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1503 ;; http://lists.gnu.org/archive/html/bug-gnu-emacs/2007-09/msg00038.html |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1504 (defun latex-forward-sexp-1 () |
84711
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1505 "Like (forward-sexp 1) but aware of multi-char elements and escaped parens." |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1506 (let ((pos (point)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1507 (forward-sexp-function)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1508 (forward-sexp 1) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1509 (let ((newpos (point))) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1510 (skip-syntax-backward "/w") |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1511 (cond |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1512 ((looking-at "\\\\end\\>") |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1513 (signal 'scan-error |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1514 (list "Containing expression ends prematurely" |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1515 (point) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1516 (prog1 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1517 (progn (ignore-errors (forward-sexp 2)) (point)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1518 (goto-char pos))))) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1519 ((looking-at "\\\\begin\\>") |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1520 (goto-char (match-end 0)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1521 (tex-next-unmatched-end)) |
84756
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1522 ;; A better way to handle this, \( .. \) etc, is probably to |
7056747df1a9
(tex-next-unmatched-eparen): Doc fix.
Glenn Morris <rgm@gnu.org>
parents:
84711
diff
changeset
|
1523 ;; temporarily change the syntax of the \ in \( to punctuation. |
84711
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1524 ((looking-back "\\\\[])}]") |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1525 (signal 'scan-error |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1526 (list "Containing expression ends prematurely" |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1527 (- (point) 2) (prog1 (point) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1528 (goto-char pos))))) |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1529 ((looking-back "\\\\\\([({[]\\)") |
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1530 (tex-next-unmatched-eparen (match-string 1))) |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1531 (t (goto-char newpos)))))) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1532 |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1533 (defun latex-forward-sexp (&optional arg) |
84711
f5f984f1f04b
(tex-validate-region): Handle escaped parens.
Glenn Morris <rgm@gnu.org>
parents:
84674
diff
changeset
|
1534 "Like `forward-sexp' but aware of multi-char elements and escaped parens." |
32045
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1535 (interactive "P") |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1536 (unless arg (setq arg 1)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1537 (let ((pos (point))) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1538 (condition-case err |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1539 (while (/= arg 0) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1540 (setq arg |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1541 (if (> arg 0) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1542 (progn (latex-forward-sexp-1) (1- arg)) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1543 (progn (latex-backward-sexp-1) (1+ arg))))) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1544 (scan-error |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1545 (goto-char pos) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1546 (signal (car err) (cdr err)))))) |
74db1ffe4fe8
(latex-metasection-list): New var.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
31990
diff
changeset
|
1547 |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1548 (defun latex-syntax-after () |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1549 "Like (char-syntax (char-after)) but aware of multi-char elements." |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1550 (if (looking-at "\\\\end\\>") ?\) (char-syntax (following-char)))) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1551 |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1552 (defun latex-skip-close-parens () |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1553 "Like (skip-syntax-forward \" )\") but aware of multi-char elements." |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1554 (let ((forward-sexp-function nil)) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1555 (while (progn (skip-syntax-forward " )") |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1556 (looking-at "\\\\end\\>")) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1557 (forward-sexp 2)))) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1558 |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1559 (defun latex-down-list () |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1560 "Like (down-list 1) but aware of multi-char elements." |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1561 (forward-comment (point-max)) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1562 (let ((forward-sexp-function nil)) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1563 (if (not (looking-at "\\\\begin\\>")) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1564 (down-list 1) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1565 (forward-sexp 1) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1566 ;; Skip arguments. |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1567 (while (looking-at "[ \t]*[[{(]") |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1568 (with-syntax-table tex-mode-syntax-table |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1569 (forward-sexp)))))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1570 |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1571 (defalias 'tex-close-latex-block 'latex-close-block) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1572 (define-skeleton latex-close-block |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1573 "Create an \\end{...} to match the last unclosed \\begin{...}." |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1574 (save-excursion |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1575 (tex-last-unended-begin) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1576 (if (not (looking-at "\\\\begin\\(\\s *{[^}\n]*}\\)")) '("{" _ "}") |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1577 (match-string 1))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1578 \n "\\end" str > \n) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
1579 |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1580 (define-skeleton latex-split-block |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1581 "Split the enclosing environment by inserting \\end{..}\\begin{..} at point." |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1582 (save-excursion |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1583 (tex-last-unended-begin) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1584 (if (not (looking-at "\\\\begin\\(\\s *{[^}\n]*}\\)")) '("{" _ "}") |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1585 (prog1 (match-string 1) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1586 (goto-char (match-end 1)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1587 (setq v1 (buffer-substring (point) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1588 (progn |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1589 (while (looking-at "[ \t]*[[{]") |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1590 (forward-sexp 1)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1591 (point))))))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
1592 \n "\\end" str > \n _ \n "\\begin" str v1 > \n) |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1593 |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1594 (defconst tex-discount-args-cmds |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1595 '("begin" "end" "input" "special" "cite" "ref" "include" "includeonly" |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1596 "documentclass" "usepackage" "label") |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1597 "TeX commands whose arguments should not be counted as text.") |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1598 |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1599 (defun tex-count-words (begin end) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1600 "Count the number of words in the buffer." |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1601 (interactive |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1602 (if (and transient-mark-mode mark-active) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1603 (list (region-beginning) (region-end)) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1604 (list (point-min) (point-max)))) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1605 ;; TODO: skip comments and math and maybe some environments. |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1606 (save-excursion |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1607 (goto-char begin) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1608 (let ((count 0)) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1609 (while (and (< (point) end) (re-search-forward "\\<" end t)) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1610 (if (not (eq (char-syntax (preceding-char)) ?/)) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1611 (progn |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1612 ;; Don't count single-char words. |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1613 (unless (looking-at ".\\>") (incf count)) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1614 (forward-char 1)) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1615 (let ((cmd |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1616 (buffer-substring-no-properties |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1617 (point) (progn (when (zerop (skip-chars-forward "a-zA-Z@")) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1618 (forward-char 1)) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1619 (point))))) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1620 (when (member cmd tex-discount-args-cmds) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1621 (skip-chars-forward "*") |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1622 (forward-comment (point-max)) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1623 (when (looking-at "\\[") |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1624 (forward-sexp 1) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1625 (forward-comment (point-max))) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1626 (if (not (looking-at "{")) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1627 (forward-char 1) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1628 (forward-sexp 1)))))) |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1629 (message "%s words" count)))) |
37942
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
1630 |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
1631 |
85 | 1632 |
1633 ;;; Invoking TeX in an inferior shell. | |
1634 | |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1635 ;; Why use a shell instead of running TeX directly? Because if TeX |
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1636 ;; gets stuck, the user can switch to the shell window and type at it. |
85 | 1637 |
37896
5cc52d5c2f2b
(tex-mode-syntax-table): Add ^.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
36105
diff
changeset
|
1638 ;; The utility functions: |
85 | 1639 |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1640 (define-derived-mode tex-shell shell-mode "TeX-Shell" |
54423
802a91a2e43a
(tex-shell): Set error parsing function here.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53489
diff
changeset
|
1641 (set (make-local-variable 'compilation-parse-errors-function) |
802a91a2e43a
(tex-shell): Set error parsing function here.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53489
diff
changeset
|
1642 'tex-compilation-parse-errors) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1643 (compilation-shell-minor-mode t)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1644 |
7834
fc1c95bf734b
(tex-start-shell): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
7827
diff
changeset
|
1645 ;;;###autoload |
85 | 1646 (defun tex-start-shell () |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1647 (with-current-buffer |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1648 (make-comint |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
1649 "tex-shell" |
34139
358adc86d127
(tex-start-shell): Obey shell-file-name.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33789
diff
changeset
|
1650 (or tex-shell-file-name (getenv "ESHELL") shell-file-name) |
59599
81cffebb04a5
* textmodes/tex-mode.el (tex-start-shell): Adding -i to the
Steven Tamm <steventamm@mac.com>
parents:
58898
diff
changeset
|
1651 nil |
59603 | 1652 ;; Specify an interactive shell, to make sure it prompts. |
59599
81cffebb04a5
* textmodes/tex-mode.el (tex-start-shell): Adding -i to the
Steven Tamm <steventamm@mac.com>
parents:
58898
diff
changeset
|
1653 "-i") |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1654 (let ((proc (get-process "tex-shell"))) |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1655 (set-process-sentinel proc 'tex-shell-sentinel) |
56792
db21eaa33109
(tex-validate-buffer): Distinguish between 0, 1, and many mismatches.
John Paul Wallington <jpw@pobox.com>
parents:
55677
diff
changeset
|
1656 (set-process-query-on-exit-flag proc nil) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1657 (tex-shell) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1658 (while (zerop (buffer-size)) |
10572
c8717227f621
(tex-display-shell): Pass nil as arg to
Richard M. Stallman <rms@gnu.org>
parents:
10341
diff
changeset
|
1659 (sleep-for 1))))) |
c8717227f621
(tex-display-shell): Pass nil as arg to
Richard M. Stallman <rms@gnu.org>
parents:
10341
diff
changeset
|
1660 |
23761
a99c30431979
(tex-feed-input): New function.
Richard M. Stallman <rms@gnu.org>
parents:
23642
diff
changeset
|
1661 (defun tex-feed-input () |
a99c30431979
(tex-feed-input): New function.
Richard M. Stallman <rms@gnu.org>
parents:
23642
diff
changeset
|
1662 "Send input to the tex shell process. |
a99c30431979
(tex-feed-input): New function.
Richard M. Stallman <rms@gnu.org>
parents:
23642
diff
changeset
|
1663 In the tex buffer this can be used to continue an interactive tex run. |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
1664 In the tex shell buffer this command behaves like `comint-send-input'." |
23761
a99c30431979
(tex-feed-input): New function.
Richard M. Stallman <rms@gnu.org>
parents:
23642
diff
changeset
|
1665 (interactive) |
37942
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
1666 (set-buffer (tex-shell-buf)) |
23761
a99c30431979
(tex-feed-input): New function.
Richard M. Stallman <rms@gnu.org>
parents:
23642
diff
changeset
|
1667 (comint-send-input) |
a99c30431979
(tex-feed-input): New function.
Richard M. Stallman <rms@gnu.org>
parents:
23642
diff
changeset
|
1668 (tex-recenter-output-buffer nil)) |
a99c30431979
(tex-feed-input): New function.
Richard M. Stallman <rms@gnu.org>
parents:
23642
diff
changeset
|
1669 |
10572
c8717227f621
(tex-display-shell): Pass nil as arg to
Richard M. Stallman <rms@gnu.org>
parents:
10341
diff
changeset
|
1670 (defun tex-display-shell () |
c8717227f621
(tex-display-shell): Pass nil as arg to
Richard M. Stallman <rms@gnu.org>
parents:
10341
diff
changeset
|
1671 "Make the TeX shell buffer visible in a window." |
37942
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
1672 (display-buffer (tex-shell-buf)) |
10572
c8717227f621
(tex-display-shell): Pass nil as arg to
Richard M. Stallman <rms@gnu.org>
parents:
10341
diff
changeset
|
1673 (tex-recenter-output-buffer nil)) |
85 | 1674 |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1675 (defun tex-shell-sentinel (proc msg) |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1676 (cond ((null (buffer-name (process-buffer proc))) |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1677 ;; buffer killed |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1678 (set-process-buffer proc nil) |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1679 (tex-delete-last-temp-files)) |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1680 ((memq (process-status proc) '(signal exit)) |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1681 (tex-delete-last-temp-files)))) |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1682 |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1683 (defun tex-set-buffer-directory (buffer directory) |
85 | 1684 "Set BUFFER's default directory to be DIRECTORY." |
1685 (setq directory (file-name-as-directory (expand-file-name directory))) | |
1686 (if (not (file-directory-p directory)) | |
1687 (error "%s is not a directory" directory) | |
1688 (save-excursion | |
1689 (set-buffer buffer) | |
1690 (setq default-directory directory)))) | |
1691 | |
5088
73a1b31b673f
(tex-send-command): Wait for output first,
Richard M. Stallman <rms@gnu.org>
parents:
5087
diff
changeset
|
1692 (defvar tex-send-command-modified-tick 0) |
73a1b31b673f
(tex-send-command): Wait for output first,
Richard M. Stallman <rms@gnu.org>
parents:
5087
diff
changeset
|
1693 (make-variable-buffer-local 'tex-send-command-modified-tick) |
73a1b31b673f
(tex-send-command): Wait for output first,
Richard M. Stallman <rms@gnu.org>
parents:
5087
diff
changeset
|
1694 |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1695 (defun tex-shell-proc () |
37942
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
1696 (or (tex-shell-running) (error "No TeX subprocess"))) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1697 (defun tex-shell-buf () |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1698 (process-buffer (tex-shell-proc))) |
37942
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
1699 (defun tex-shell-buf-no-error () |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
1700 (let ((proc (tex-shell-running))) |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
1701 (and proc (process-buffer proc)))) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1702 |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1703 (defun tex-send-command (command &optional file background) |
5087
a7b2df620d1a
(tex-start-shell): Don't use -v option.
Richard M. Stallman <rms@gnu.org>
parents:
4917
diff
changeset
|
1704 "Send COMMAND to TeX shell process, substituting optional FILE for *. |
2588
b0a1846fe3b8
Doc fixes. Also a few teaks to pacify the byte-compiler.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2576
diff
changeset
|
1705 Do this in background if optional BACKGROUND is t. If COMMAND has no *, |
b0a1846fe3b8
Doc fixes. Also a few teaks to pacify the byte-compiler.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2576
diff
changeset
|
1706 FILE will be appended, preceded by a blank, to COMMAND. If FILE is nil, no |
b0a1846fe3b8
Doc fixes. Also a few teaks to pacify the byte-compiler.
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
2576
diff
changeset
|
1707 substitution will be made in COMMAND. COMMAND can be any expression that |
21314
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
1708 evaluates to a command string. |
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
1709 |
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
1710 Return the process in which TeX is running." |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1711 (save-excursion |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1712 (let* ((cmd (eval command)) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1713 (proc (tex-shell-proc)) |
5262
b3a689b41d39
(tex-common-initialization): Make paragraph-start
Richard M. Stallman <rms@gnu.org>
parents:
5088
diff
changeset
|
1714 (buf (process-buffer proc)) |
2265
daf268a98d5e
* tex-mode.el (tex-send-command): Fix the command sent so that no
Jim Blandy <jimb@redhat.com>
parents:
1577
diff
changeset
|
1715 (star (string-match "\\*" cmd)) |
5087
a7b2df620d1a
(tex-start-shell): Don't use -v option.
Richard M. Stallman <rms@gnu.org>
parents:
4917
diff
changeset
|
1716 (string |
a7b2df620d1a
(tex-start-shell): Don't use -v option.
Richard M. Stallman <rms@gnu.org>
parents:
4917
diff
changeset
|
1717 (concat |
65315
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1718 (if (null file) |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1719 cmd |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1720 (if (file-name-absolute-p file) |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1721 (setq file (convert-standard-filename file))) |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1722 (if star (concat (substring cmd 0 star) |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1723 (shell-quote-argument file) |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1724 (substring cmd (1+ star))) |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1725 (concat cmd " " (shell-quote-argument file)))) |
5087
a7b2df620d1a
(tex-start-shell): Don't use -v option.
Richard M. Stallman <rms@gnu.org>
parents:
4917
diff
changeset
|
1726 (if background "&" "")))) |
5262
b3a689b41d39
(tex-common-initialization): Make paragraph-start
Richard M. Stallman <rms@gnu.org>
parents:
5088
diff
changeset
|
1727 ;; Switch to buffer before checking for subproc output in it. |
b3a689b41d39
(tex-common-initialization): Make paragraph-start
Richard M. Stallman <rms@gnu.org>
parents:
5088
diff
changeset
|
1728 (set-buffer buf) |
5088
73a1b31b673f
(tex-send-command): Wait for output first,
Richard M. Stallman <rms@gnu.org>
parents:
5087
diff
changeset
|
1729 ;; If text is unchanged since previous tex-send-command, |
73a1b31b673f
(tex-send-command): Wait for output first,
Richard M. Stallman <rms@gnu.org>
parents:
5087
diff
changeset
|
1730 ;; we haven't got any output. So wait for output now. |
5262
b3a689b41d39
(tex-common-initialization): Make paragraph-start
Richard M. Stallman <rms@gnu.org>
parents:
5088
diff
changeset
|
1731 (if (= (buffer-modified-tick buf) tex-send-command-modified-tick) |
5088
73a1b31b673f
(tex-send-command): Wait for output first,
Richard M. Stallman <rms@gnu.org>
parents:
5087
diff
changeset
|
1732 (accept-process-output proc)) |
5087
a7b2df620d1a
(tex-start-shell): Don't use -v option.
Richard M. Stallman <rms@gnu.org>
parents:
4917
diff
changeset
|
1733 (goto-char (process-mark proc)) |
a7b2df620d1a
(tex-start-shell): Don't use -v option.
Richard M. Stallman <rms@gnu.org>
parents:
4917
diff
changeset
|
1734 (insert string) |
5088
73a1b31b673f
(tex-send-command): Wait for output first,
Richard M. Stallman <rms@gnu.org>
parents:
5087
diff
changeset
|
1735 (comint-send-input) |
21314
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
1736 (setq tex-send-command-modified-tick (buffer-modified-tick buf)) |
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
1737 proc))) |
85 | 1738 |
6479
855f4f2d24da
(tex-delete-last-temp-files): New arg NOT-ALL.
Richard M. Stallman <rms@gnu.org>
parents:
5427
diff
changeset
|
1739 (defun tex-delete-last-temp-files (&optional not-all) |
855f4f2d24da
(tex-delete-last-temp-files): New arg NOT-ALL.
Richard M. Stallman <rms@gnu.org>
parents:
5427
diff
changeset
|
1740 "Delete any junk files from last temp file. |
855f4f2d24da
(tex-delete-last-temp-files): New arg NOT-ALL.
Richard M. Stallman <rms@gnu.org>
parents:
5427
diff
changeset
|
1741 If NOT-ALL is non-nil, save the `.dvi' file." |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1742 (if tex-last-temp-file |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1743 (let* ((dir (file-name-directory tex-last-temp-file)) |
7536
efecdee78026
(tex-delete-last-temp-files): Don't fail on non-existent directory.
Karl Heuer <kwzh@gnu.org>
parents:
7298
diff
changeset
|
1744 (list (and (file-directory-p dir) |
efecdee78026
(tex-delete-last-temp-files): Don't fail on non-existent directory.
Karl Heuer <kwzh@gnu.org>
parents:
7298
diff
changeset
|
1745 (file-name-all-completions |
22707
4fa39e6af756
(tex-delete-last-temp-files): Use file-name-sans-extensions.
Richard M. Stallman <rms@gnu.org>
parents:
22292
diff
changeset
|
1746 (file-name-sans-extension |
4fa39e6af756
(tex-delete-last-temp-files): Use file-name-sans-extensions.
Richard M. Stallman <rms@gnu.org>
parents:
22292
diff
changeset
|
1747 (file-name-nondirectory tex-last-temp-file)) |
4fa39e6af756
(tex-delete-last-temp-files): Use file-name-sans-extensions.
Richard M. Stallman <rms@gnu.org>
parents:
22292
diff
changeset
|
1748 dir)))) |
7536
efecdee78026
(tex-delete-last-temp-files): Don't fail on non-existent directory.
Karl Heuer <kwzh@gnu.org>
parents:
7298
diff
changeset
|
1749 (while list |
6479
855f4f2d24da
(tex-delete-last-temp-files): New arg NOT-ALL.
Richard M. Stallman <rms@gnu.org>
parents:
5427
diff
changeset
|
1750 (if not-all |
855f4f2d24da
(tex-delete-last-temp-files): New arg NOT-ALL.
Richard M. Stallman <rms@gnu.org>
parents:
5427
diff
changeset
|
1751 (and |
855f4f2d24da
(tex-delete-last-temp-files): New arg NOT-ALL.
Richard M. Stallman <rms@gnu.org>
parents:
5427
diff
changeset
|
1752 ;; If arg is non-nil, don't delete the .dvi file. |
855f4f2d24da
(tex-delete-last-temp-files): New arg NOT-ALL.
Richard M. Stallman <rms@gnu.org>
parents:
5427
diff
changeset
|
1753 (not (string-match "\\.dvi$" (car list))) |
855f4f2d24da
(tex-delete-last-temp-files): New arg NOT-ALL.
Richard M. Stallman <rms@gnu.org>
parents:
5427
diff
changeset
|
1754 (delete-file (concat dir (car list)))) |
855f4f2d24da
(tex-delete-last-temp-files): New arg NOT-ALL.
Richard M. Stallman <rms@gnu.org>
parents:
5427
diff
changeset
|
1755 (delete-file (concat dir (car list)))) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1756 (setq list (cdr list)))))) |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1757 |
741
587f7a98341d
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
739
diff
changeset
|
1758 (add-hook 'kill-emacs-hook 'tex-delete-last-temp-files) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
1759 |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1760 ;; |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1761 ;; Machinery to guess the command that the user wants to execute. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1762 ;; |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1763 |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1764 (defvar tex-compile-history nil) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1765 |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1766 (defvar tex-input-files-re |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1767 (eval-when-compile |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1768 (concat "\\." (regexp-opt '("tex" "texi" "texinfo" |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1769 "bbl" "ind" "sty" "cls") t) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1770 ;; Include files with no dots (for directories). |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1771 "\\'\\|\\`[^.]+\\'"))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1772 |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1773 (defcustom tex-use-reftex t |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1774 "If non-nil, use RefTeX's list of files to determine what command to use." |
62811
ccc8869d7418
(superscript, subscript, tex-math-face)
Lute Kamstra <lute@gnu.org>
parents:
61770
diff
changeset
|
1775 :type 'boolean |
ccc8869d7418
(superscript, subscript, tex-math-face)
Lute Kamstra <lute@gnu.org>
parents:
61770
diff
changeset
|
1776 :group 'tex) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1777 |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1778 (defvar tex-compile-commands |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1779 '(((concat "pdf" tex-command |
51562
65f7a99a6241
(tex-compile-commands): Handle tex-start-commands like tex-start-tex does.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51533
diff
changeset
|
1780 " " (if (< 0 (length tex-start-commands)) |
62909
86b398407446
(tex-compile-commands, tex-compile, tex-start-tex): Undo all but the last
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62846
diff
changeset
|
1781 (shell-quote-argument tex-start-commands)) " %f") |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1782 t "%r.pdf") |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1783 ((concat tex-command |
51562
65f7a99a6241
(tex-compile-commands): Handle tex-start-commands like tex-start-tex does.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51533
diff
changeset
|
1784 " " (if (< 0 (length tex-start-commands)) |
62909
86b398407446
(tex-compile-commands, tex-compile, tex-start-tex): Undo all but the last
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62846
diff
changeset
|
1785 (shell-quote-argument tex-start-commands)) " %f") |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1786 t "%r.dvi") |
63101
3f08f5c8ef66
(tex-guess-mode): Add RequirePackage.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62909
diff
changeset
|
1787 ("xdvi %r &" "%r.dvi") |
3f08f5c8ef66
(tex-guess-mode): Add RequirePackage.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62909
diff
changeset
|
1788 ("xpdf %r.pdf &" "%r.pdf") |
3f08f5c8ef66
(tex-guess-mode): Add RequirePackage.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62909
diff
changeset
|
1789 ("gv %r.ps &" "%r.ps") |
52957
a4241f6b64e7
(tex-compile-commands): Add `yap' and `ps2pdf'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1790 ("yap %r &" "%r.dvi") |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1791 ("advi %r &" "%r.dvi") |
63101
3f08f5c8ef66
(tex-guess-mode): Add RequirePackage.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62909
diff
changeset
|
1792 ("gv %r.pdf &" "%r.pdf") |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1793 ("bibtex %r" "%r.aux" "%r.bbl") |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1794 ("makeindex %r" "%r.idx" "%r.ind") |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1795 ("texindex %r.??") |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1796 ("dvipdfm %r" "%r.dvi" "%r.pdf") |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1797 ("dvipdf %r" "%r.dvi" "%r.pdf") |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1798 ("dvips -o %r.ps %r" "%r.dvi" "%r.ps") |
52957
a4241f6b64e7
(tex-compile-commands): Add `yap' and `ps2pdf'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1799 ("ps2pdf %r.ps" "%r.ps" "%r.pdf") |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1800 ("lpr %r.ps" "%r.ps")) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1801 "List of commands for `tex-compile'. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1802 Each element should be of the form (FORMAT IN OUT) where |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1803 FORMAT is an expression that evaluates to a string that can contain |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1804 - `%r' the main file name without extension. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1805 - `%f' the main file name. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1806 IN can be either a string (with the same % escapes in it) indicating |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1807 the name of the input file, or t to indicate that the input is all |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1808 the TeX files of the document, or nil if we don't know. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1809 OUT describes the output file and is either a %-escaped string |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1810 or nil to indicate that there is no output file.") |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1811 |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1812 ;; defsubst* gives better byte-code than defsubst. |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1813 (defsubst* tex-string-prefix-p (str1 str2) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1814 "Return non-nil if STR1 is a prefix of STR2" |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1815 (eq t (compare-strings str2 nil (length str1) str1 nil nil))) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1816 |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1817 (defun tex-guess-main-file (&optional all) |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1818 "Find a likely `tex-main-file'. |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1819 Looks for hints in other buffers in the same directory or in |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1820 ALL other buffers. If ALL is `sub' only look at buffers in parent directories |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1821 of the current buffer." |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1822 (let ((dir default-directory) |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1823 (header-re tex-start-of-header)) |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1824 (catch 'found |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1825 ;; Look for a buffer with `tex-main-file' set. |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1826 (dolist (buf (if (consp all) all (buffer-list))) |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1827 (with-current-buffer buf |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1828 (when (and (cond |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1829 ((null all) (equal dir default-directory)) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1830 ((eq all 'sub) (tex-string-prefix-p default-directory dir)) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1831 (t)) |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1832 (stringp tex-main-file)) |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1833 (throw 'found (expand-file-name tex-main-file))))) |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1834 ;; Look for a buffer containing the magic `tex-start-of-header'. |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1835 (dolist (buf (if (consp all) all (buffer-list))) |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1836 (with-current-buffer buf |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1837 (when (and (cond |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1838 ((null all) (equal dir default-directory)) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1839 ((eq all 'sub) (tex-string-prefix-p default-directory dir)) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1840 (t)) |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1841 buffer-file-name |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1842 ;; (or (easy-mmode-derived-mode-p 'latex-mode) |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1843 ;; (easy-mmode-derived-mode-p 'plain-tex-mode)) |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1844 (save-excursion |
43691
f8e3c1819848
(tex-guess-main-file): Handle the case where one of the buffers is narrowed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43307
diff
changeset
|
1845 (save-restriction |
f8e3c1819848
(tex-guess-main-file): Handle the case where one of the buffers is narrowed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43307
diff
changeset
|
1846 (widen) |
f8e3c1819848
(tex-guess-main-file): Handle the case where one of the buffers is narrowed.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
43307
diff
changeset
|
1847 (goto-char (point-min)) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1848 (re-search-forward |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1849 header-re (+ (point) 10000) t)))) |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1850 (throw 'found (expand-file-name buffer-file-name)))))))) |
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1851 |
34139
358adc86d127
(tex-start-shell): Obey shell-file-name.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33789
diff
changeset
|
1852 (defun tex-main-file () |
358adc86d127
(tex-start-shell): Obey shell-file-name.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33789
diff
changeset
|
1853 "Return the relative name of the main file." |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1854 (let* ((file (or tex-main-file |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1855 ;; Compatibility with AUCTeX. |
51796
09e60f24d0c4
(tex-main-file): Use with-no-warnings.
Richard M. Stallman <rms@gnu.org>
parents:
51562
diff
changeset
|
1856 (with-no-warnings |
58696
35f8fcf3abca
(tex-main-file): Add a compatibility with AUCTeX.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
57698
diff
changeset
|
1857 (when (boundp 'TeX-master) |
35f8fcf3abca
(tex-main-file): Add a compatibility with AUCTeX.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
57698
diff
changeset
|
1858 (cond ((stringp TeX-master) |
35f8fcf3abca
(tex-main-file): Add a compatibility with AUCTeX.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
57698
diff
changeset
|
1859 (make-local-variable 'tex-main-file) |
35f8fcf3abca
(tex-main-file): Add a compatibility with AUCTeX.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
57698
diff
changeset
|
1860 (setq tex-main-file TeX-master)) |
35f8fcf3abca
(tex-main-file): Add a compatibility with AUCTeX.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
57698
diff
changeset
|
1861 ((and (eq TeX-master t) buffer-file-name) |
35f8fcf3abca
(tex-main-file): Add a compatibility with AUCTeX.
Markus Rost <rost@math.uni-bielefeld.de>
parents:
57698
diff
changeset
|
1862 (file-relative-name buffer-file-name))))) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1863 ;; Try to guess the main file. |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1864 (if (not buffer-file-name) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1865 (error "Buffer is not associated with any file") |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1866 (file-relative-name |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1867 (if (save-excursion |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1868 (goto-char (point-min)) |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1869 (re-search-forward tex-start-of-header |
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
1870 (+ (point) 10000) t)) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1871 ;; This is the main file. |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1872 buffer-file-name |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1873 ;; This isn't the main file, let's try to find better, |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1874 (or (tex-guess-main-file) |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1875 (tex-guess-main-file 'sub) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
1876 ;; (tex-guess-main-file t) |
34139
358adc86d127
(tex-start-shell): Obey shell-file-name.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33789
diff
changeset
|
1877 buffer-file-name))))))) |
52957
a4241f6b64e7
(tex-compile-commands): Add `yap' and `ps2pdf'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1878 (if (or (file-exists-p file) (string-match "\\.tex\\'" file)) |
a4241f6b64e7
(tex-compile-commands): Add `yap' and `ps2pdf'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1879 file (concat file ".tex")))) |
33363
1a5b4e0146bc
(standard-latex-block-names): Add "math".
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33113
diff
changeset
|
1880 |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1881 (defun tex-summarize-command (cmd) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1882 (if (not (stringp cmd)) "" |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1883 (mapconcat 'identity |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1884 (mapcar (lambda (s) (car (split-string s))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1885 (split-string cmd "\\s-*\\(?:;\\|&&\\)\\s-*")) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1886 "&"))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1887 |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1888 (defun tex-uptodate-p (file) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1889 "Return non-nil if FILE is not uptodate w.r.t the document source files. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1890 FILE is typically the output DVI or PDF file." |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1891 ;; We should check all the files included !!! |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1892 (and |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1893 ;; Clearly, the target must exist. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1894 (file-exists-p file) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1895 ;; And the last run must not have asked for a rerun. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1896 ;; FIXME: this should check that the last run was done on the same file. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1897 (let ((buf (condition-case nil (tex-shell-buf) (error nil)))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1898 (when buf |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1899 (with-current-buffer buf |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1900 (save-excursion |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1901 (goto-char (point-max)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1902 (and (re-search-backward |
65315
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1903 (concat |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1904 "(see the transcript file for additional information)" |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1905 "\\|^Output written on .*" |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1906 (regexp-quote (file-name-nondirectory file)) |
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
1907 " (.*)\\.") nil t) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1908 (> (save-excursion |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1909 (or (re-search-backward "\\[[0-9]+\\]" nil t) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1910 (point-min))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1911 (save-excursion |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1912 (or (re-search-backward "Rerun" nil t) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1913 (point-min))))))))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1914 ;; And the input files must not have been changed in the meantime. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1915 (let ((files (if (and tex-use-reftex |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1916 (fboundp 'reftex-scanning-info-available-p) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1917 (reftex-scanning-info-available-p)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1918 (reftex-all-document-files) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1919 (list (file-name-directory (expand-file-name file))))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1920 (ignored-dirs-re |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1921 (concat |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1922 (regexp-opt |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1923 (delq nil (mapcar (lambda (s) (if (eq (aref s (1- (length s))) ?/) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1924 (substring s 0 (1- (length s))))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1925 completion-ignored-extensions)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1926 t) "\\'")) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1927 (uptodate t)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1928 (while (and files uptodate) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1929 (let ((f (pop files))) |
52957
a4241f6b64e7
(tex-compile-commands): Add `yap' and `ps2pdf'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1930 (if (and (file-directory-p f) |
a4241f6b64e7
(tex-compile-commands): Add `yap' and `ps2pdf'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1931 ;; Avoid infinite loops. |
a4241f6b64e7
(tex-compile-commands): Add `yap' and `ps2pdf'.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
52401
diff
changeset
|
1932 (not (file-symlink-p f))) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1933 (unless (string-match ignored-dirs-re f) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1934 (setq files (nconc |
79173
50711e81a122
(tex-uptodate-p): Don't signal an error if one
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78842
diff
changeset
|
1935 (ignore-errors ;Not readable or something. |
50711e81a122
(tex-uptodate-p): Don't signal an error if one
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
78842
diff
changeset
|
1936 (directory-files f t tex-input-files-re)) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1937 files))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1938 (when (file-newer-than-file-p f file) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1939 (setq uptodate nil))))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1940 uptodate))) |
59996
aac0a33f5772
Change release version from 21.4 to 22.1 throughout.
Kim F. Storm <storm@cua.dk>
parents:
59603
diff
changeset
|
1941 |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1942 |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1943 (autoload 'format-spec "format-spec") |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1944 |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1945 (defvar tex-executable-cache nil) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1946 (defun tex-executable-exists-p (name) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1947 "Like `executable-find' but with a cache." |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1948 (let ((cache (assoc name tex-executable-cache))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1949 (if cache (cdr cache) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1950 (let ((executable (executable-find name))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1951 (push (cons name executable) tex-executable-cache) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1952 executable)))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1953 |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1954 (defun tex-command-executable (cmd) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1955 (let ((s (if (stringp cmd) cmd (eval (car cmd))))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1956 (substring s 0 (string-match "[ \t]\\|\\'" s)))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1957 |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1958 (defun tex-command-active-p (cmd fspec) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1959 "Return non-nil if the CMD spec might need to be run." |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1960 (let ((in (nth 1 cmd)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1961 (out (nth 2 cmd))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1962 (if (stringp in) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1963 (let ((file (format-spec in fspec))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1964 (when (file-exists-p file) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1965 (or (not out) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1966 (file-newer-than-file-p |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1967 file (format-spec out fspec))))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1968 (when (and (eq in t) (stringp out)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1969 (not (tex-uptodate-p (format-spec out fspec))))))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1970 |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1971 (defun tex-compile-default (fspec) |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1972 "Guess a default command given the `format-spec' FSPEC." |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1973 ;; TODO: Learn to do latex+dvips! |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1974 (let ((cmds nil) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1975 (unchanged-in nil)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1976 ;; Only consider active commands. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1977 (dolist (cmd tex-compile-commands) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1978 (when (tex-executable-exists-p (tex-command-executable cmd)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1979 (if (tex-command-active-p cmd fspec) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1980 (push cmd cmds) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1981 (push (nth 1 cmd) unchanged-in)))) |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
1982 ;; If no command seems to be applicable, arbitrarily pick the first one. |
63101
3f08f5c8ef66
(tex-guess-mode): Add RequirePackage.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62909
diff
changeset
|
1983 (setq cmds (if cmds (nreverse cmds) (list (car tex-compile-commands)))) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1984 ;; Remove those commands whose input was considered stable for |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1985 ;; some other command (typically if (t . "%.pdf") is inactive |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1986 ;; then we're using pdflatex and the fact that the dvi file |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1987 ;; is inexistent doesn't matter). |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1988 (let ((tmp nil)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1989 (dolist (cmd cmds) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1990 (unless (member (nth 1 cmd) unchanged-in) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1991 (push cmd tmp))) |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1992 ;; Only remove if there's something left. |
63101
3f08f5c8ef66
(tex-guess-mode): Add RequirePackage.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62909
diff
changeset
|
1993 (if tmp (setq cmds (nreverse tmp)))) |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1994 ;; Remove commands whose input is not uptodate either. |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1995 (let ((outs (delq nil (mapcar (lambda (x) (nth 2 x)) cmds))) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1996 (tmp nil)) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1997 (dolist (cmd cmds) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
1998 (unless (member (nth 1 cmd) outs) |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
1999 (push cmd tmp))) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2000 ;; Only remove if there's something left. |
63101
3f08f5c8ef66
(tex-guess-mode): Add RequirePackage.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62909
diff
changeset
|
2001 (if tmp (setq cmds (nreverse tmp)))) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2002 ;; Select which file we're going to operate on (the latest). |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2003 (let ((latest (nth 1 (car cmds)))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2004 (dolist (cmd (prog1 (cdr cmds) (setq cmds (list (car cmds))))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2005 (if (equal latest (nth 1 cmd)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2006 (push cmd cmds) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2007 (unless (eq latest t) ;Can't beat that! |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2008 (if (or (not (stringp latest)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2009 (eq (nth 1 cmd) t) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2010 (and (stringp (nth 1 cmd)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2011 (file-newer-than-file-p |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2012 (format-spec (nth 1 cmd) fspec) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2013 (format-spec latest fspec)))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2014 (setq latest (nth 1 cmd) cmds (list cmd))))))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2015 ;; Expand the command spec into the actual text. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2016 (dolist (cmd (prog1 cmds (setq cmds nil))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2017 (push (cons (eval (car cmd)) (cdr cmd)) cmds)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2018 ;; Select the favorite command from the history. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2019 (let ((hist tex-compile-history) |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2020 re hist-cmd) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2021 (while hist |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2022 (setq hist-cmd (pop hist)) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2023 (setq re (concat "\\`" |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2024 (regexp-quote (tex-command-executable hist-cmd)) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2025 "\\([ \t]\\|\\'\\)")) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2026 (dolist (cmd cmds) |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2027 ;; If the hist entry uses the same command and applies to a file |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2028 ;; of the same type (e.g. `gv %r.pdf' vs `gv %r.ps'), select cmd. |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2029 (and (string-match re (car cmd)) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2030 (or (not (string-match "%[fr]\\([-._[:alnum:]]+\\)" (car cmd))) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2031 (string-match (regexp-quote (match-string 1 (car cmd))) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2032 hist-cmd)) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2033 (setq hist nil cmds (list cmd))))) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2034 ;; Substitute and return. |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2035 (if (and hist-cmd |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2036 (string-match (concat "[' \t\"]" (format-spec "%r" fspec) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2037 "\\([;&' \t\"]\\|\\'\\)") hist-cmd)) |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2038 ;; The history command was already applied to the same file, |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2039 ;; so just reuse it. |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2040 hist-cmd |
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2041 (if cmds (format-spec (caar cmds) fspec)))))) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2042 |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2043 (defun tex-compile (dir cmd) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2044 "Run a command CMD on current TeX buffer's file in DIR." |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2045 ;; FIXME: Use time-stamps on files to decide the next op. |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2046 (interactive |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2047 (let* ((file (tex-main-file)) |
51533
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
2048 (default-directory |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
2049 (prog1 (file-name-directory (expand-file-name file)) |
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
2050 (setq file (file-name-nondirectory file)))) |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2051 (root (file-name-sans-extension file)) |
62909
86b398407446
(tex-compile-commands, tex-compile, tex-start-tex): Undo all but the last
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62846
diff
changeset
|
2052 (fspec (list (cons ?r (shell-quote-argument root)) |
86b398407446
(tex-compile-commands, tex-compile, tex-start-tex): Undo all but the last
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62846
diff
changeset
|
2053 (cons ?f (shell-quote-argument file)))) |
51336
c1252b2b2582
(latex-block-args-alist, latex-block-body-alist): New vars.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51005
diff
changeset
|
2054 (default (tex-compile-default fspec))) |
51533
fd5c388dd142
(tex-search-noncomment): New macro.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51525
diff
changeset
|
2055 (list default-directory |
51005
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2056 (completing-read |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2057 (format "Command [%s]: " (tex-summarize-command default)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2058 (mapcar (lambda (x) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2059 (list (format-spec (eval (car x)) fspec))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2060 tex-compile-commands) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2061 nil nil nil 'tex-compile-history default)))) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2062 (save-some-buffers (not compilation-ask-about-save) nil) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2063 (if (tex-shell-running) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2064 (tex-kill-job) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2065 (tex-start-shell)) |
aeb075459c1d
(tex-compile-history, tex-input-files-re)
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50943
diff
changeset
|
2066 (tex-send-tex-command cmd dir)) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
2067 |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
2068 (defun tex-start-tex (command file &optional dir) |
21314
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2069 "Start a TeX run, using COMMAND on FILE." |
23322 | 2070 (let* ((star (string-match "\\*" command)) |
21314
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2071 (compile-command |
23322 | 2072 (if star |
2073 (concat (substring command 0 star) | |
62909
86b398407446
(tex-compile-commands, tex-compile, tex-start-tex): Undo all but the last
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62846
diff
changeset
|
2074 (shell-quote-argument file) |
23322 | 2075 (substring command (1+ star))) |
2076 (concat command " " | |
46367
56af7a7485ae
Set encoding to utf-8.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
46120
diff
changeset
|
2077 tex-start-options |
44884
6c699f1e076c
(tex-start-options): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
43691
diff
changeset
|
2078 (if (< 0 (length tex-start-commands)) |
62909
86b398407446
(tex-compile-commands, tex-compile, tex-start-tex): Undo all but the last
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62846
diff
changeset
|
2079 (concat |
86b398407446
(tex-compile-commands, tex-compile, tex-start-tex): Undo all but the last
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62846
diff
changeset
|
2080 (shell-quote-argument tex-start-commands) " ")) |
86b398407446
(tex-compile-commands, tex-compile, tex-start-tex): Undo all but the last
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62846
diff
changeset
|
2081 (shell-quote-argument file))))) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2082 (tex-send-tex-command compile-command dir))) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2083 |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2084 (defun tex-send-tex-command (cmd &optional dir) |
37942
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2085 (unless (or (equal dir (let ((buf (tex-shell-buf-no-error))) |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2086 (and buf (with-current-buffer buf |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2087 default-directory)))) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2088 (not dir)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2089 (let (shell-dirtrack-verbose) |
65315
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
2090 (tex-send-command tex-shell-cd-command dir))) |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2091 (with-current-buffer (process-buffer (tex-send-command cmd)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2092 (setq compilation-last-buffer (current-buffer)) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2093 (compilation-forget-errors) |
33789
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2094 ;; Don't parse previous compilations. |
33472
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2095 (set-marker compilation-parsing-end (1- (point-max)))) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2096 (tex-display-shell) |
1de979dabe6f
(tex-font-lock-keywords-1): Use `keep'
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33363
diff
changeset
|
2097 (setq tex-last-buffer-texed (current-buffer))) |
21314
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2098 |
33789
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2099 (defvar tex-error-parse-syntax-table |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2100 (let ((st (make-syntax-table))) |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2101 (modify-syntax-entry ?\( "()" st) |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2102 (modify-syntax-entry ?\) ")(" st) |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2103 (modify-syntax-entry ?\\ "\\" st) |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2104 (modify-syntax-entry ?\{ "_" st) |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2105 (modify-syntax-entry ?\} "_" st) |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2106 (modify-syntax-entry ?\[ "_" st) |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2107 (modify-syntax-entry ?\] "_" st) |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2108 ;; Single quotations may appear in errors |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2109 (modify-syntax-entry ?\" "_" st) |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2110 st) |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2111 "Syntax-table used while parsing TeX error messages.") |
3cb3c23bbe84
(tex-font-lock-keywords-1): Fix ARG regexp to skip quoted braces.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33477
diff
changeset
|
2112 |
21314
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2113 (defun tex-compilation-parse-errors (limit-search find-at-least) |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2114 "Parse the current buffer as TeX error messages. |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2115 See the variable `compilation-parse-errors-function' for the interface it uses. |
21314
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2116 |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2117 This function parses only the last TeX compilation. |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2118 It works on TeX compilations only. It is necessary for that purpose, |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2119 since TeX does not put file names and line numbers on the same line as |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2120 for the error messages." |
21314
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2121 (require 'thingatpt) |
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2122 (setq compilation-error-list nil) |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2123 (let ((default-directory ; Perhaps dir has changed meanwhile. |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2124 (file-name-directory (buffer-file-name tex-last-buffer-texed))) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2125 found-desired (num-errors-found 0) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2126 last-filename last-linenum last-position |
78818
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2127 begin-of-error end-of-error errfilename) |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2128 ;; Don't reparse messages already seen at last parse. |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2129 (goto-char compilation-parsing-end) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2130 ;; Parse messages. |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2131 (while (and (not (or found-desired (eobp))) |
78818
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2132 ;; First alternative handles the newer --file-line-error style: |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2133 ;; ./test2.tex:14: Too many }'s. |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2134 ;; Second handles the old-style: |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2135 ;; ! Too many }'s. |
78816
b93f64a362b4
Joe Wells <jbw at macs.hw.ac.uk> (tiny change)
Glenn Morris <rgm@gnu.org>
parents:
78813
diff
changeset
|
2136 (prog1 (re-search-forward |
78818
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2137 "^\\(?:\\([^:\n]+\\):[[:digit:]]+:\\|!\\) " nil 'move) |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2138 (setq begin-of-error (match-beginning 0) |
78818
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2139 end-of-error (match-end 0) |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2140 errfilename (match-string 1))) |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2141 (re-search-forward |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2142 "^l\\.\\([0-9]+\\) \\(\\.\\.\\.\\)?\\(.*\\)$" nil 'move)) |
54423
802a91a2e43a
(tex-shell): Set error parsing function here.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
53489
diff
changeset
|
2143 (let* ((this-error (copy-marker begin-of-error)) |
56792
db21eaa33109
(tex-validate-buffer): Distinguish between 0, 1, and many mismatches.
John Paul Wallington <jpw@pobox.com>
parents:
55677
diff
changeset
|
2144 (linenum (string-to-number (match-string 1))) |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2145 (error-text (regexp-quote (match-string 3))) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2146 (filename |
78818
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2147 ;; Prefer --file-liner-error filename if we have it. |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2148 (or errfilename |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2149 (save-excursion |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2150 (with-syntax-table tex-error-parse-syntax-table |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2151 (backward-up-list 1) |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2152 (skip-syntax-forward "(_") |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2153 (while (not (file-readable-p (thing-at-point 'filename))) |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2154 (skip-syntax-backward "(_") |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2155 (backward-up-list 1) |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2156 (skip-syntax-forward "(_")) |
7f83f178a5ef
(tex-compilation-parse-errors): Prefer the filename from
Glenn Morris <rgm@gnu.org>
parents:
78816
diff
changeset
|
2157 (thing-at-point 'filename))))) |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2158 (new-file |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2159 (or (null last-filename) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2160 (not (string-equal last-filename filename)))) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2161 (error-location |
55677
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2162 (with-current-buffer |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2163 (if (equal filename (concat tex-zap-file ".tex")) |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2164 tex-last-buffer-texed |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2165 (find-file-noselect filename)) |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2166 (save-excursion |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2167 (if new-file |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2168 (progn (goto-line linenum) (setq last-position nil)) |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2169 (goto-char last-position) |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2170 (forward-line (- linenum last-linenum))) |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2171 ;; first try a forward search for the error text, |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2172 ;; then a backward search limited by the last error. |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2173 (let ((starting-point (point))) |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2174 (or (re-search-forward error-text nil t) |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2175 (re-search-backward error-text last-position t) |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2176 (goto-char starting-point))) |
624ac8a21b21
(tex-compilation-parse-errors): Save excursion in source buffer.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
54423
diff
changeset
|
2177 (point-marker))))) |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2178 (goto-char this-error) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2179 (if (and compilation-error-list |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2180 (or (and find-at-least |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2181 (>= num-errors-found |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2182 find-at-least)) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2183 (and limit-search |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2184 (>= end-of-error limit-search))) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2185 new-file) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2186 (setq found-desired t) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2187 (setq num-errors-found (1+ num-errors-found) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2188 last-filename filename |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2189 last-linenum linenum |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2190 last-position error-location |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2191 compilation-error-list ; Add the new error |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2192 (cons (cons this-error error-location) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2193 compilation-error-list)) |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2194 (goto-char end-of-error))))) |
25414
7c4808c6804b
(tex-compilation-parse-errors):
Richard M. Stallman <rms@gnu.org>
parents:
24527
diff
changeset
|
2195 (set-marker compilation-parsing-end (point)) |
57639
7e77ec815f3a
(tex-compilation-parse-errors): Don't output messages.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
57415
diff
changeset
|
2196 (setq compilation-error-list (nreverse compilation-error-list))) |
21314
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2197 |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2198 ;;; The commands: |
85 | 2199 |
2200 (defun tex-region (beg end) | |
2201 "Run TeX on the current region, via a temporary file. | |
2202 The file's name comes from the variable `tex-zap-file' and the | |
2203 variable `tex-directory' says where to put it. | |
2204 | |
2205 If the buffer has a header, the header is given to TeX before the | |
2206 region itself. The buffer's header is all lines between the strings | |
2207 defined by `tex-start-of-header' and `tex-end-of-header' inclusive. | |
2208 The header must start in the first 100 lines of the buffer. | |
2209 | |
2210 The value of `tex-trailer' is given to TeX as input after the region. | |
2211 | |
2212 The value of `tex-command' specifies the command to use to run TeX." | |
2213 (interactive "r") | |
2214 (if (tex-shell-running) | |
2215 (tex-kill-job) | |
2216 (tex-start-shell)) | |
2217 (or tex-zap-file | |
2218 (setq tex-zap-file (tex-generate-zap-file-name))) | |
16807
f8d567e52662
(tex-region): Correctly handle possible
Richard M. Stallman <rms@gnu.org>
parents:
16777
diff
changeset
|
2219 ;; Temp file will be written and TeX will be run in zap-directory. |
f8d567e52662
(tex-region): Correctly handle possible
Richard M. Stallman <rms@gnu.org>
parents:
16777
diff
changeset
|
2220 ;; If the TEXINPUTS file has relative directories or if the region has |
f8d567e52662
(tex-region): Correctly handle possible
Richard M. Stallman <rms@gnu.org>
parents:
16777
diff
changeset
|
2221 ;; \input of files, this must be the same directory as the file for |
f8d567e52662
(tex-region): Correctly handle possible
Richard M. Stallman <rms@gnu.org>
parents:
16777
diff
changeset
|
2222 ;; TeX to access the correct inputs. That's why it's safest if |
f8d567e52662
(tex-region): Correctly handle possible
Richard M. Stallman <rms@gnu.org>
parents:
16777
diff
changeset
|
2223 ;; tex-directory is ".". |
f8d567e52662
(tex-region): Correctly handle possible
Richard M. Stallman <rms@gnu.org>
parents:
16777
diff
changeset
|
2224 (let* ((zap-directory |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2225 (file-name-as-directory (expand-file-name tex-directory))) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
2226 (tex-out-file (expand-file-name (concat tex-zap-file ".tex") |
78801
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2227 zap-directory)) |
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2228 (main-file (expand-file-name (tex-main-file))) |
78813
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2229 (ismain (string-equal main-file (buffer-file-name))) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2230 already-output) |
9450
af39d29d1386
(compare-windows-whitespace): Eliminate initial value.
Richard M. Stallman <rms@gnu.org>
parents:
8890
diff
changeset
|
2231 ;; Don't delete temp files if we do the same buffer twice in a row. |
af39d29d1386
(compare-windows-whitespace): Eliminate initial value.
Richard M. Stallman <rms@gnu.org>
parents:
8890
diff
changeset
|
2232 (or (eq (current-buffer) tex-last-buffer-texed) |
af39d29d1386
(compare-windows-whitespace): Eliminate initial value.
Richard M. Stallman <rms@gnu.org>
parents:
8890
diff
changeset
|
2233 (tex-delete-last-temp-files t)) |
78813
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2234 (let ((default-directory zap-directory)) ; why? |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2235 ;; We assume the header is fully contained in tex-main-file. |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2236 ;; We use f-f-ns so we get prompted about any changes on disk. |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2237 (with-current-buffer (find-file-noselect main-file) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2238 (setq already-output (tex-region-header tex-out-file |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2239 (and ismain beg)))) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2240 ;; Write out the specified region (but don't repeat anything |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2241 ;; already written in the header). |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2242 (write-region (if ismain |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2243 (max beg already-output) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2244 beg) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2245 end tex-out-file (not (zerop already-output))) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2246 ;; Write the trailer, if any. |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2247 ;; Precede it with a newline to make sure it |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2248 ;; is not hidden in a comment. |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2249 (if tex-trailer |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2250 (write-region (concat "\n" tex-trailer) nil |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2251 tex-out-file t))) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2252 ;; Record the file name to be deleted afterward. |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2253 (setq tex-last-temp-file tex-out-file) |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2254 ;; Use a relative file name here because (1) the proper dir |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2255 ;; is already current, and (2) the abs file name is sometimes |
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2256 ;; too long and can make tex crash. |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
2257 (tex-start-tex tex-command (concat tex-zap-file ".tex") zap-directory) |
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
2258 (setq tex-print-file tex-out-file))) |
85 | 2259 |
78813
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2260 (defun tex-region-header (file &optional beg) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2261 "If there is a TeX header in the current buffer, write it to FILE. |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2262 Return point at the end of the region so written, or zero. If |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2263 the optional buffer position BEG is specified, then the region |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2264 written out starts at BEG, if this lies before the start of the header. |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2265 |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2266 If the first line matches `tex-first-line-header-regexp', it is |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2267 also written out. The variables `tex-start-of-header' and |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2268 `tex-end-of-header' are used to locate the header. Note that the |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2269 start of the header is required to be within the first 100 lines." |
78801
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2270 (save-excursion |
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2271 (save-restriction |
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2272 (widen) |
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2273 (goto-char (point-min)) |
78813
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2274 (let ((search-end (save-excursion |
84611
fb155376791a
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
84587
diff
changeset
|
2275 (forward-line 100) |
78813
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2276 (point))) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2277 (already-output 0) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2278 hbeg hend) |
78801
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2279 ;; Maybe copy first line, such as `\input texinfo', to temp file. |
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2280 (and tex-first-line-header-regexp |
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2281 (looking-at tex-first-line-header-regexp) |
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2282 (write-region (point) |
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2283 (progn (forward-line 1) |
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2284 (setq already-output (point))) |
78813
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2285 file)) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2286 ;; Write out the header, if there is one, and any of the |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2287 ;; specified region which extends before it. But don't repeat |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2288 ;; anything already written. |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2289 (and tex-start-of-header |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2290 (re-search-forward tex-start-of-header search-end t) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2291 (progn |
84611
fb155376791a
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
84587
diff
changeset
|
2292 (beginning-of-line) |
fb155376791a
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
84587
diff
changeset
|
2293 (setq hbeg (point)) ; mark beginning of header |
78813
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2294 (when (re-search-forward tex-end-of-header nil t) |
84611
fb155376791a
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
84587
diff
changeset
|
2295 (forward-line 1) |
fb155376791a
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
84587
diff
changeset
|
2296 (setq hend (point)) ; mark end of header |
78813
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2297 (write-region |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2298 (max (if beg |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2299 (min hbeg beg) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2300 hbeg) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2301 already-output) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2302 hend file (not (zerop already-output))) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2303 (setq already-output hend)))) |
776b9b17aed0
(tex-region): Simplify previous change,
Glenn Morris <rgm@gnu.org>
parents:
78801
diff
changeset
|
2304 already-output)))) |
78801
c72d88d40ef8
(tex-region): Handle the case where the region is not in
Glenn Morris <rgm@gnu.org>
parents:
78225
diff
changeset
|
2305 |
85 | 2306 (defun tex-buffer () |
2307 "Run TeX on current buffer. See \\[tex-region] for more information. | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2308 Does not save the buffer, so it's useful for trying experimental versions. |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2309 See \\[tex-file] for an alternative." |
85 | 2310 (interactive) |
2311 (tex-region (point-min) (point-max))) | |
2312 | |
2313 (defun tex-file () | |
2314 "Prompt to save all buffers and run TeX (or LaTeX) on current buffer's file. | |
2315 This function is more useful than \\[tex-buffer] when you need the | |
2316 `.aux' file of LaTeX to have the correct name." | |
2317 (interactive) | |
46120
7177a47bc557
(tex-file): call `save-some-buffers' before `tex-main-file'
Sam Steingold <sds@gnu.org>
parents:
45055
diff
changeset
|
2318 (when tex-offer-save |
7177a47bc557
(tex-file): call `save-some-buffers' before `tex-main-file'
Sam Steingold <sds@gnu.org>
parents:
45055
diff
changeset
|
2319 (save-some-buffers)) |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
2320 (let* ((source-file (tex-main-file)) |
34139
358adc86d127
(tex-start-shell): Obey shell-file-name.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33789
diff
changeset
|
2321 (file-dir (file-name-directory (expand-file-name source-file)))) |
85 | 2322 (if (tex-shell-running) |
2323 (tex-kill-job) | |
2324 (tex-start-shell)) | |
31968
dc896c1b6a26
(latex-imenu-indent-string): Add a space.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
30888
diff
changeset
|
2325 (tex-start-tex tex-command source-file file-dir) |
24129
18c751deec0d
(tex-define-common-keys): Remove key binding of tex-feed-input.
Richard M. Stallman <rms@gnu.org>
parents:
24109
diff
changeset
|
2326 (setq tex-print-file (expand-file-name source-file)))) |
85 | 2327 |
2328 (defun tex-generate-zap-file-name () | |
2329 "Generate a unique name suitable for use as a file name." | |
2330 ;; Include the shell process number and host name | |
2331 ;; in case there are multiple shells (for same or different user). | |
23849
1f014e9d0768
(tex-generate-zap-file-name): Don't start the name with #.
Karl Heuer <kwzh@gnu.org>
parents:
23761
diff
changeset
|
2332 ;; Dec 1998: There is a report that some versions of xdvi |
1f014e9d0768
(tex-generate-zap-file-name): Don't start the name with #.
Karl Heuer <kwzh@gnu.org>
parents:
23761
diff
changeset
|
2333 ;; don't work with file names that start with #. |
24109
e1e1bb544d84
(latex-run-command): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
23849
diff
changeset
|
2334 (format "_TZ_%d-%s" |
85 | 2335 (process-id (get-buffer-process "*tex-shell*")) |
34139
358adc86d127
(tex-start-shell): Obey shell-file-name.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
33789
diff
changeset
|
2336 (subst-char-in-string ?. ?- (system-name)))) |
85 | 2337 |
2338 ;; This will perhaps be useful for modifying TEXINPUTS. | |
2339 ;; Expand each file name, separated by colons, in the string S. | |
2340 (defun tex-expand-files (s) | |
2341 (let (elts (start 0)) | |
2342 (while (string-match ":" s start) | |
2343 (setq elts (cons (substring s start (match-beginning 0)) elts)) | |
2344 (setq start (match-end 0))) | |
2345 (or (= start 0) | |
2346 (setq elts (cons (substring s start) elts))) | |
30888
e559f0aa6b2d
Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26270
diff
changeset
|
2347 (mapconcat (lambda (elt) |
e559f0aa6b2d
Don't quote lambda.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
26270
diff
changeset
|
2348 (if (= (length elt) 0) elt (expand-file-name elt))) |
24109
e1e1bb544d84
(latex-run-command): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents:
23849
diff
changeset
|
2349 (nreverse elts) ":"))) |
85 | 2350 |
2351 (defun tex-shell-running () | |
36105
595ee2f062cf
tex-shell-running: Check the process buffer too
Sam Steingold <sds@gnu.org>
parents:
34139
diff
changeset
|
2352 (let ((proc (get-process "tex-shell"))) |
37942
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2353 (when proc |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2354 (if (and (eq (process-status proc) 'run) |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2355 (buffer-live-p (process-buffer proc))) |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2356 ;; return the TeX process on success |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2357 proc |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2358 ;; get rid of the process permanently |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2359 ;; this should get rid of the annoying w32 problem with |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2360 ;; dead tex-shell buffer and live process |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2361 (delete-process proc))))) |
85 | 2362 |
2363 (defun tex-kill-job () | |
2364 "Kill the currently running TeX job." | |
2365 (interactive) | |
37942
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2366 ;; `quit-process' leads to core dumps of the tex process (except if |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
2367 ;; coredumpsize has limit 0kb as on many environments). One would |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
2368 ;; like to use (kill-process proc 'lambda), however that construct |
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
2369 ;; does not work on some systems and kills the shell itself. |
37942
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2370 (let ((proc (get-process "tex-shell"))) |
0f57d8b106f1
fix live process/dead buffer bub on w32
Sam Steingold <sds@gnu.org>
parents:
37896
diff
changeset
|
2371 (when proc (quit-process proc t)))) |
85 | 2372 |
2373 (defun tex-recenter-output-buffer (linenum) | |
2374 "Redisplay buffer of TeX job output so that most recent output can be seen. | |
2375 The last line of the buffer is displayed on | |
2376 line LINE of the window, or centered if LINE is nil." | |
2377 (interactive "P") | |
2378 (let ((tex-shell (get-buffer "*tex-shell*")) | |
16493
bdca7f3626c0
(tex-file): Fix paren error in last change.
Richard M. Stallman <rms@gnu.org>
parents:
16356
diff
changeset
|
2379 (window)) |
85 | 2380 (if (null tex-shell) |
2381 (message "No TeX output buffer") | |
16493
bdca7f3626c0
(tex-file): Fix paren error in last change.
Richard M. Stallman <rms@gnu.org>
parents:
16356
diff
changeset
|
2382 (setq window (display-buffer tex-shell)) |
bdca7f3626c0
(tex-file): Fix paren error in last change.
Richard M. Stallman <rms@gnu.org>
parents:
16356
diff
changeset
|
2383 (save-selected-window |
bdca7f3626c0
(tex-file): Fix paren error in last change.
Richard M. Stallman <rms@gnu.org>
parents:
16356
diff
changeset
|
2384 (select-window window) |
bdca7f3626c0
(tex-file): Fix paren error in last change.
Richard M. Stallman <rms@gnu.org>
parents:
16356
diff
changeset
|
2385 (bury-buffer tex-shell) |
bdca7f3626c0
(tex-file): Fix paren error in last change.
Richard M. Stallman <rms@gnu.org>
parents:
16356
diff
changeset
|
2386 (goto-char (point-max)) |
bdca7f3626c0
(tex-file): Fix paren error in last change.
Richard M. Stallman <rms@gnu.org>
parents:
16356
diff
changeset
|
2387 (recenter (if linenum |
bdca7f3626c0
(tex-file): Fix paren error in last change.
Richard M. Stallman <rms@gnu.org>
parents:
16356
diff
changeset
|
2388 (prefix-numeric-value linenum) |
bdca7f3626c0
(tex-file): Fix paren error in last change.
Richard M. Stallman <rms@gnu.org>
parents:
16356
diff
changeset
|
2389 (/ (window-height) 2))))))) |
85 | 2390 |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2391 (defun tex-print (&optional alt) |
85 | 2392 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file]. |
1577 | 2393 Runs the shell command defined by `tex-dvi-print-command'. If prefix argument |
2394 is provided, use the alternative command, `tex-alt-dvi-print-command'." | |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2395 (interactive "P") |
85 | 2396 (let ((print-file-name-dvi (tex-append tex-print-file ".dvi")) |
2397 test-name) | |
2398 (if (and (not (equal (current-buffer) tex-last-buffer-texed)) | |
10341
f27bcd1faf07
(tex-print): Better check for when to print current
Richard M. Stallman <rms@gnu.org>
parents:
10325
diff
changeset
|
2399 (buffer-file-name) |
f27bcd1faf07
(tex-print): Better check for when to print current
Richard M. Stallman <rms@gnu.org>
parents:
10325
diff
changeset
|
2400 ;; Check that this buffer's printed file is up to date. |
85 | 2401 (file-newer-than-file-p |
2402 (setq test-name (tex-append (buffer-file-name) ".dvi")) | |
10341
f27bcd1faf07
(tex-print): Better check for when to print current
Richard M. Stallman <rms@gnu.org>
parents:
10325
diff
changeset
|
2403 (buffer-file-name))) |
85 | 2404 (setq print-file-name-dvi test-name)) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2405 (if (not (file-exists-p print-file-name-dvi)) |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2406 (error "No appropriate `.dvi' file could be found") |
21314
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2407 (if (tex-shell-running) |
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2408 (tex-kill-job) |
7d4a55d38b2c
(tex-send-command): Return the process.
Richard M. Stallman <rms@gnu.org>
parents:
21121
diff
changeset
|
2409 (tex-start-shell)) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2410 (tex-send-command |
24273
803ec3bfa983
When compiling, require compare-w and skeleton
Richard M. Stallman <rms@gnu.org>
parents:
24222
diff
changeset
|
2411 (if alt tex-alt-dvi-print-command tex-dvi-print-command) |
62846
93362151dd3a
remove extraneous calls to shell-quote-argument
Karl Berry <karl@gnu.org>
parents:
62811
diff
changeset
|
2412 print-file-name-dvi |
48931
0af848ed2cae
(tex-print): Call shell-quote-argument on the file name.
Richard M. Stallman <rms@gnu.org>
parents:
48222
diff
changeset
|
2413 t)))) |
85 | 2414 |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2415 (defun tex-alt-print () |
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2416 "Print the .dvi file made by \\[tex-region], \\[tex-buffer] or \\[tex-file]. |
10296
c58e6bb97038
(tex-mode-map): Add BibTeX File menu item.
Richard M. Stallman <rms@gnu.org>
parents:
10215
diff
changeset
|
2417 Runs the shell command defined by `tex-alt-dvi-print-command'." |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2418 (interactive) |
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2419 (tex-print t)) |
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2420 |
85 | 2421 (defun tex-view () |
2422 "Preview the last `.dvi' file made by running TeX under Emacs. | |
2423 This means, made using \\[tex-region], \\[tex-buffer] or \\[tex-file]. | |
11617
9eaeed5c8a40
(tex-view): Nice error if tex-dvi-view-command is nil.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
2424 The variable `tex-dvi-view-command' specifies the shell command for preview. |
9eaeed5c8a40
(tex-view): Nice error if tex-dvi-view-command is nil.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
2425 You must set that variable yourself before using this command, |
9eaeed5c8a40
(tex-view): Nice error if tex-dvi-view-command is nil.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
2426 because there is no standard value that would generally work." |
85 | 2427 (interactive) |
11617
9eaeed5c8a40
(tex-view): Nice error if tex-dvi-view-command is nil.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
2428 (or tex-dvi-view-command |
9eaeed5c8a40
(tex-view): Nice error if tex-dvi-view-command is nil.
Richard M. Stallman <rms@gnu.org>
parents:
11235
diff
changeset
|
2429 (error "You must set `tex-dvi-view-command'")) |
60749
3b3b017d62ab
(tex-view): If tex-shell process is not running, restart it.
Eli Zaretskii <eliz@gnu.org>
parents:
60232
diff
changeset
|
2430 ;; Restart the TeX shell if necessary. |
3b3b017d62ab
(tex-view): If tex-shell process is not running, restart it.
Eli Zaretskii <eliz@gnu.org>
parents:
60232
diff
changeset
|
2431 (or (tex-shell-running) |
3b3b017d62ab
(tex-view): If tex-shell process is not running, restart it.
Eli Zaretskii <eliz@gnu.org>
parents:
60232
diff
changeset
|
2432 (tex-start-shell)) |
48170
a65d281d19f0
(tex-dvi-view-command): Value can be sexp.
Richard M. Stallman <rms@gnu.org>
parents:
48120
diff
changeset
|
2433 (let ((tex-dvi-print-command (eval tex-dvi-view-command))) |
85 | 2434 (tex-print))) |
2435 | |
2436 (defun tex-append (file-name suffix) | |
2437 "Append to FILENAME the suffix SUFFIX, using same algorithm TeX uses. | |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2438 Pascal-based TeX scans for the first period, C TeX uses the last. |
85 | 2439 No period is retained immediately before SUFFIX, |
2440 so normally SUFFIX starts with one." | |
2441 (if (stringp file-name) | |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2442 (let ((file (file-name-nondirectory file-name)) |
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2443 trial-name) |
14383
af281a43a3bb
(tex-face-alist, tex-latex-face-alist): New variables.
Richard M. Stallman <rms@gnu.org>
parents:
13399
diff
changeset
|
2444 ;; Try splitting on last period. |
10778
ace814499178
(tex-append): Try splitting on last period, then
Richard M. Stallman <rms@gnu.org>
parents:
10572
diff
changeset
|
2445 ;; The first-period split can get fooled when two files |
ace814499178
(tex-append): Try splitting on last period, then
Richard M. Stallman <rms@gnu.org>
parents:
10572
diff
changeset
|
2446 ;; named a.tex and a.b.tex are both tex'd; |
ace814499178
(tex-append): Try splitting on last period, then
Richard M. Stallman <rms@gnu.org>
parents:
10572
diff
changeset
|
2447 ;; the last-period split must be right if it matches at all. |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2448 (setq trial-name |
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2449 (concat (file-name-directory file-name) |
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2450 (substring file 0 |
10778
ace814499178
(tex-append): Try splitting on last period, then
Richard M. Stallman <rms@gnu.org>
parents:
10572
diff
changeset
|
2451 (string-match "\\.[^.]*$" file)) |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2452 suffix)) |
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2453 (if (or (file-exists-p trial-name) |
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2454 (file-exists-p (concat trial-name ".aux"))) ;for BibTeX files |
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2455 trial-name |
10778
ace814499178
(tex-append): Try splitting on last period, then
Richard M. Stallman <rms@gnu.org>
parents:
10572
diff
changeset
|
2456 ;; Not found, so split on first period. |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2457 (concat (file-name-directory file-name) |
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2458 (substring file 0 |
10778
ace814499178
(tex-append): Try splitting on last period, then
Richard M. Stallman <rms@gnu.org>
parents:
10572
diff
changeset
|
2459 (string-match "\\." file)) |
4917
550746214170
(tex-alt-print): New function for menu bar.
Richard M. Stallman <rms@gnu.org>
parents:
4908
diff
changeset
|
2460 suffix))) |
85 | 2461 " ")) |
2462 | |
2463 (defun tex-show-print-queue () | |
2464 "Show the print queue that \\[tex-print] put your job on. | |
1577 | 2465 Runs the shell command defined by `tex-show-queue-command'." |
85 | 2466 (interactive) |
2467 (if (tex-shell-running) | |
2468 (tex-kill-job) | |
2469 (tex-start-shell)) | |
10572
c8717227f621
(tex-display-shell): Pass nil as arg to
Richard M. Stallman <rms@gnu.org>
parents:
10341
diff
changeset
|
2470 (tex-send-command tex-show-queue-command) |
c8717227f621
(tex-display-shell): Pass nil as arg to
Richard M. Stallman <rms@gnu.org>
parents:
10341
diff
changeset
|
2471 (tex-display-shell)) |
85 | 2472 |
2473 (defun tex-bibtex-file () | |
2474 "Run BibTeX on the current buffer's file." | |
2475 (interactive) | |
2476 (if (tex-shell-running) | |
2477 (tex-kill-job) | |
2478 (tex-start-shell)) | |
24222
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
2479 (let (shell-dirtrack-verbose |
8b2cecc76fe3
(tex-mode-map): Replace validate-tex-buffer by
Markus Rost <rost@math.uni-bielefeld.de>
parents:
24173
diff
changeset
|
2480 (tex-out-file |
85 | 2481 (tex-append (file-name-nondirectory (buffer-file-name)) "")) |
2482 (file-dir (file-name-directory (buffer-file-name)))) | |
65315
af6b70a1bba9
(tex-send-tex-command, tex-bibtex-file): Undo last change.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
65267
diff
changeset
|
2483 (tex-send-command tex-shell-cd-command file-dir) |
10572
c8717227f621
(tex-display-shell): Pass nil as arg to
Richard M. Stallman <rms@gnu.org>
parents:
10341
diff
changeset
|
2484 (tex-send-command tex-bibtex-command tex-out-file)) |
c8717227f621
(tex-display-shell): Pass nil as arg to
Richard M. Stallman <rms@gnu.org>
parents:
10341
diff
changeset
|
2485 (tex-display-shell)) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2486 |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2487 ;;;; |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2488 ;;;; LaTeX indentation |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2489 ;;;; |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2490 |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2491 (defvar tex-indent-allhanging t) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2492 (defvar tex-indent-arg 4) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2493 (defvar tex-indent-basic 2) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2494 (defvar tex-indent-item tex-indent-basic) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2495 (defvar tex-indent-item-re "\\\\\\(bib\\)?item\\>") |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2496 (defvar latex-noindent-environments '("document")) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2497 |
51525
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
2498 (defvar tex-latex-indent-syntax-table |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
2499 (let ((st (make-syntax-table tex-mode-syntax-table))) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
2500 (modify-syntax-entry ?$ "." st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
2501 (modify-syntax-entry ?\( "." st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
2502 (modify-syntax-entry ?\) "." st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
2503 st) |
ebea7b586362
(tex-mode-syntax-table, tex-latex-indent-syntax-table):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
51336
diff
changeset
|
2504 "Syntax table used while computing indentation.") |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2505 |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2506 (defun latex-indent (&optional arg) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2507 (if (and (eq (get-text-property (line-beginning-position) 'face) |
65706
183bad3fad1f
(tex-insert-quote, latex-indent): Quote face names.
Juanma Barranquero <lekktu@gmail.com>
parents:
65683
diff
changeset
|
2508 'tex-verbatim)) |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2509 'noindent |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2510 (with-syntax-table tex-latex-indent-syntax-table |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2511 ;; TODO: Rather than ignore $, we should try to be more clever about it. |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2512 (let ((indent |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2513 (save-excursion |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2514 (beginning-of-line) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2515 (latex-find-indent)))) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2516 (if (< indent 0) (setq indent 0)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2517 (if (<= (current-column) (current-indentation)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2518 (indent-line-to indent) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2519 (save-excursion (indent-line-to indent))))))) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2520 |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2521 (defun latex-find-indent (&optional virtual) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2522 "Find the proper indentation of text after point. |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2523 VIRTUAL if non-nil indicates that we're only trying to find the indentation |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2524 in order to determine the indentation of something else. |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2525 There might be text before point." |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2526 (save-excursion |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2527 (skip-chars-forward " \t") |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2528 (or |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2529 ;; Stick the first line at column 0. |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2530 (and (= (point-min) (line-beginning-position)) 0) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2531 ;; Trust the current indentation, if such info is applicable. |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2532 (and virtual (save-excursion (skip-chars-backward " \t&") (bolp)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2533 (current-column)) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2534 ;; Stick verbatim environments to the left margin. |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2535 (and (looking-at "\\\\\\(begin\\|end\\) *{\\([^\n}]+\\)") |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2536 (member (match-string 2) tex-verbatim-environments) |
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2537 0) |
32479
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2538 ;; Put leading close-paren where the matching open brace would be. |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2539 (and (eq (latex-syntax-after) ?\)) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2540 (ignore-errors |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2541 (save-excursion |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2542 (latex-skip-close-parens) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2543 (latex-backward-sexp-1) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2544 (latex-find-indent 'virtual)))) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2545 ;; Default (maybe an argument) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2546 (let ((pos (point)) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2547 ;; Outdent \item if necessary. |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2548 (indent (if (looking-at tex-indent-item-re) (- tex-indent-item) 0)) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2549 up-list-pos) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2550 ;; Find the previous point which determines our current indentation. |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2551 (condition-case err |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2552 (progn |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2553 (latex-backward-sexp-1) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2554 (while (> (current-column) (current-indentation)) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2555 (latex-backward-sexp-1))) |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2556 (scan-error |
783ed0889617
Require CL when compiling.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
32045
diff
changeset
|
2557 (setq up-list-pos (nth 2 err)))) |
37952
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2558 (cond |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2559 ((= (point-min) pos) 0) ; We're really just indenting the first line. |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2560 ((integerp up-list-pos) |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2561 ;; Have to indent relative to the open-paren. |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2562 (goto-char up-list-pos) |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2563 (if (and (not tex-indent-allhanging) |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2564 (save-excursion |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2565 ;; Make sure we're an argument to a macro and |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2566 ;; that the macro is at the beginning of a line. |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2567 (condition-case nil |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2568 (progn |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2569 (while (eq (char-syntax (char-after)) ?\() |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2570 (forward-sexp -1)) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2571 (and (eq (char-syntax (char-after)) ?/) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2572 (progn (skip-chars-backward " \t&") |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2573 (bolp)))) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2574 (scan-error nil))) |
37952
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2575 (> pos (progn (latex-down-list) |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2576 (forward-comment (point-max)) |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2577 (point)))) |
48222
14763abde487
(latex-standard-block-names): Rename from standard-latex-block-names.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48170
diff
changeset
|
2578 ;; Align with the first element after the open-paren. |
37952
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2579 (current-column) |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2580 ;; We're the first element after a hanging brace. |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2581 (goto-char up-list-pos) |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2582 (+ (if (and (looking-at "\\\\begin *{\\([^\n}]+\\)") |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2583 (member (match-string 1) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2584 latex-noindent-environments)) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2585 0 tex-indent-basic) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2586 indent (latex-find-indent 'virtual)))) |
37952
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2587 ;; We're now at the "beginning" of a line. |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2588 ((not (and (not virtual) (eq (char-after) ?\\))) |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2589 ;; Nothing particular here: just keep the same indentation. |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2590 (+ indent (current-column))) |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2591 ;; We're now looking at a macro call. |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2592 ((looking-at tex-indent-item-re) |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2593 ;; Indenting relative to an item, have to re-add the outdenting. |
37952
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2594 (+ indent (current-column) tex-indent-item)) |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2595 (t |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2596 (let ((col (current-column))) |
64060
fa1dc4af6eee
(tex-file, tex-run, tex-view): Finish `defgroup' description with period.
Juanma Barranquero <lekktu@gmail.com>
parents:
63228
diff
changeset
|
2597 (if (or (not (eq (char-syntax (or (char-after pos) ?\s)) ?\()) |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2598 ;; Can't be an arg if there's an empty line inbetween. |
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2599 (save-excursion (re-search-forward "^[ \t]*$" pos t))) |
37952
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2600 ;; If the first char was not an open-paren, there's |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2601 ;; a risk that this is really not an argument to the |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2602 ;; macro at all. |
53489
e7d6a284bd5a
(latex-find-indent): Avoid error at end of buf.
Richard M. Stallman <rms@gnu.org>
parents:
53185
diff
changeset
|
2603 (+ indent col) |
e7d6a284bd5a
(latex-find-indent): Avoid error at end of buf.
Richard M. Stallman <rms@gnu.org>
parents:
53185
diff
changeset
|
2604 (forward-sexp 1) |
e7d6a284bd5a
(latex-find-indent): Avoid error at end of buf.
Richard M. Stallman <rms@gnu.org>
parents:
53185
diff
changeset
|
2605 (if (< (line-end-position) |
e7d6a284bd5a
(latex-find-indent): Avoid error at end of buf.
Richard M. Stallman <rms@gnu.org>
parents:
53185
diff
changeset
|
2606 (save-excursion (forward-comment (point-max)) |
e7d6a284bd5a
(latex-find-indent): Avoid error at end of buf.
Richard M. Stallman <rms@gnu.org>
parents:
53185
diff
changeset
|
2607 (point))) |
37952
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2608 ;; we're indenting the first argument. |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2609 (min (current-column) (+ tex-indent-arg col)) |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2610 (skip-syntax-forward " ") |
4192225498c7
(latex-find-indent): Handle the BOBP case.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
37942
diff
changeset
|
2611 (current-column)))))))))) |
50592
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2612 ;;; DocTeX support |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2613 |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2614 (defun doctex-font-lock-^^A () |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2615 (if (eq (char-after (line-beginning-position)) ?\%) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2616 (progn |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2617 (put-text-property |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2618 (1- (match-beginning 1)) (match-beginning 1) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2619 'syntax-table |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2620 (if (= (1+ (line-beginning-position)) (match-beginning 1)) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2621 ;; The `%' is a single-char comment, which Emacs |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2622 ;; syntax-table can't deal with. We could turn it |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2623 ;; into a non-comment, or use `\n%' or `%^' as the comment. |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2624 ;; Instead, we include it in the ^^A comment. |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2625 (eval-when-compile (string-to-syntax "< b")) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2626 (eval-when-compile (string-to-syntax ">")))) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2627 (let ((end (line-end-position))) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2628 (if (< end (point-max)) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2629 (put-text-property |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2630 end (1+ end) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2631 'syntax-table |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2632 (eval-when-compile (string-to-syntax "> b"))))) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2633 (eval-when-compile (string-to-syntax "< b"))))) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2634 |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2635 (defun doctex-font-lock-syntactic-face-function (state) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2636 ;; Mark DocTeX documentation, which is parsed as a style A comment |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2637 ;; starting in column 0. |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2638 (if (or (nth 3 state) (nth 7 state) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2639 (not (memq (char-before (nth 8 state)) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2640 '(?\n nil)))) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2641 ;; Anything else is just as for LaTeX. |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2642 (tex-font-lock-syntactic-face-function state) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2643 font-lock-doc-face)) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2644 |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2645 (defvar doctex-font-lock-syntactic-keywords |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2646 (append |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2647 tex-font-lock-syntactic-keywords |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2648 ;; For DocTeX comment-in-doc. |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2649 `(("\\(\\^\\)\\^A" (1 (doctex-font-lock-^^A)))))) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2650 |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2651 (defvar doctex-font-lock-keywords |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2652 (append tex-font-lock-keywords |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2653 '(("^%<[^>]*>" (0 font-lock-preprocessor-face t))))) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2654 |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2655 ;;;###autoload |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2656 (define-derived-mode doctex-mode latex-mode "DocTeX" |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2657 "Major mode to edit DocTeX files." |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2658 (setq font-lock-defaults |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2659 (cons (append (car font-lock-defaults) '(doctex-font-lock-keywords)) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2660 (mapcar |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2661 (lambda (x) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2662 (case (car-safe x) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2663 (font-lock-syntactic-keywords |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2664 (cons (car x) 'doctex-font-lock-syntactic-keywords)) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2665 (font-lock-syntactic-face-function |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2666 (cons (car x) 'doctex-font-lock-syntactic-face-function)) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2667 (t x))) |
73473fb92184
(latex-mode-map): Bind latex-split-block to C-c C-s.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
48931
diff
changeset
|
2668 (cdr font-lock-defaults))))) |
739
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2669 |
0bb85f26b79c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
657
diff
changeset
|
2670 (run-hooks 'tex-mode-load-hook) |
85 | 2671 |
584 | 2672 (provide 'tex-mode) |
2673 | |
57304
8d5af2441eda
(tex-dvi-view-command): Use `yap' on w32.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
56843
diff
changeset
|
2674 ;; arch-tag: c0a680b1-63aa-4547-84b9-4193c29c0080 |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
2675 ;;; tex-mode.el ends here |