Mercurial > emacs
annotate lisp/international/latexenc.el @ 98649:5796ed317137
Lots of minor fixes.
(Capture): New chapter.
(Org Plot): New section.
author | Carsten Dominik <dominik@science.uva.nl> |
---|---|
date | Sun, 12 Oct 2008 06:22:41 +0000 |
parents | c3512b2085a0 |
children | a9dc0e7c3f2b |
rev | line source |
---|---|
68419 | 1 ;;; latexenc.el --- guess correct coding system in LaTeX files -*-coding: iso-2022-7bit -*- |
61909 | 2 |
79709 | 3 ;; Copyright (C) 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
61909 | 4 |
5 ;; Author: Arne J,Ax(Brgensen <arne@arnested.dk> | |
6 ;; Keywords: mule, coding system, latex | |
7 | |
8 ;; This file is part of GNU Emacs. | |
9 | |
94664
889bc336b89b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79709
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
61909 | 11 ;; it under the terms of the GNU General Public License as published by |
94664
889bc336b89b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79709
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
889bc336b89b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79709
diff
changeset
|
13 ;; (at your option) any later version. |
61909 | 14 |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
94664
889bc336b89b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79709
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
61909 | 22 |
23 ;;; Commentary: | |
24 | |
25 ;; This code tries to guess the correct coding system of a LaTeX file. | |
26 | |
27 ;; First it searches for a \inputencoding{...} or | |
28 ;; \usepackage[...]{inputenc} line in the file and looks up the ... in | |
29 ;; `latex-inputenc-coding-alist' to find the corresponding coding | |
30 ;; system. | |
31 | |
32 ;; If this fails it will search for AUCTeX's TeX-master or tex-mode's | |
33 ;; tex-main-file variable in the local variables section and visit | |
34 ;; that file to get the coding system from the master file. This check | |
35 ;; can be disabled by setting `latexenc-dont-use-TeX-master-flag' to | |
36 ;; t. | |
37 | |
38 ;; If we have still not found a coding system we will try to use the | |
39 ;; standard tex-mode's `tex-guess-main-file' and get the coding system | |
40 ;; from the main file. This check can be disabled by setting | |
41 ;; `latexenc-dont-use-tex-guess-main-file-flag' to t. | |
42 | |
43 ;; The functionality is enabled by adding the function | |
44 ;; `latexenc-find-file-coding-system' to `file-coding-system-alist' | |
45 ;; like this | |
46 | |
47 ;; (add-to-list 'file-coding-system-alist | |
63091 | 48 ;; '("\\.\\(tex\\|ltx\\|dtx\\|drv\\)\\'" . latexenc-find-file-coding-system)) |
61909 | 49 |
50 ;;; Code: | |
51 | |
52 ;;;###autoload | |
53 (defcustom latex-inputenc-coding-alist | |
54 '(("ansinew" . windows-1252) ; MS Windows ANSI encoding, extension of Latin-1 | |
55 ("applemac" . mac-roman) | |
56 ("ascii" . us-ascii) | |
57 ("cp1250" . windows-1250) ; MS Windows encoding, codepage 1250 | |
58 ("cp1252" . windows-1252) ; synonym of ansinew | |
59 ("cp1257" . cp1257) | |
60 ("cp437de" . cp437) ; IBM code page 437 (German version): 225 is \ss | |
61 ("cp437" . cp437) ; IBM code page 437: 225 is \beta | |
62 ("cp850" . cp850) ; IBM code page 850 | |
63 ("cp852" . cp852) ; IBM code page 852 | |
72692
0b31ecee2604
* international/latexenc.el (latex-inputenc-coding-alist): Add cp858.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
72322
diff
changeset
|
64 ("cp858" . cp858) ; IBM code page 850 but with a euro symbol |
61909 | 65 ("cp865" . cp865) ; IBM code page 865 |
66 ("latin1" . iso-8859-1) | |
67 ("latin2" . iso-8859-2) | |
68 ("latin3" . iso-8859-3) | |
69 ("latin4" . iso-8859-4) | |
70 ("latin5" . iso-8859-5) | |
71 ("latin9" . iso-8859-15) | |
72 ;; ("latin10" . undecided) | |
73 ;; ("macce" . undecided) ; Apple Central European | |
74 ("next" . next) ; The Next encoding | |
75 ("utf8" . utf-8) | |
76 ("utf8x" . utf-8)) ; used by the Unicode LaTeX package | |
67256
47d2cf396650
(latex-inputenc-coding-alist): Doc fix.
Eli Zaretskii <eliz@gnu.org>
parents:
67205
diff
changeset
|
77 "Mapping from LaTeX encodings in \"inputenc.sty\" to Emacs coding systems. |
67205
06635bf17a9e
(latex-inputenc-coding-alist): Reword doc string.
Reiner Steib <Reiner.Steib@gmx.de>
parents:
64085
diff
changeset
|
78 LaTeX encodings are specified with \"\\usepackage[encoding]{inputenc}\". |
61909 | 79 Used by the function `latexenc-find-file-coding-system'." |
80 :group 'files | |
81 :group 'mule | |
82 :type '(alist :key-type (string :tag "LaTeX input encoding") | |
83 :value-type (coding-system :tag "Coding system"))) | |
84 | |
85 ;;;###autoload | |
86 (defun latexenc-inputenc-to-coding-system (inputenc) | |
87 "Return the corresponding coding-system for the specified input encoding. | |
88 Return nil if no matching coding system can be found." | |
89 (cdr (assoc inputenc latex-inputenc-coding-alist))) | |
90 | |
91 ;;;###autoload | |
92 (defun latexenc-coding-system-to-inputenc (cs) | |
93 "Return the corresponding input encoding for the specified coding system. | |
94 Return nil if no matching input encoding can be found." | |
95 (let (result) | |
96 (catch 'result | |
97 (dolist (elem latex-inputenc-coding-alist result) | |
98 (let ((elem-cs (cdr elem))) | |
99 (when (and (coding-system-p elem-cs) | |
100 (coding-system-p cs) | |
101 (eq (coding-system-base cs) (coding-system-base elem-cs))) | |
102 (setq result (car elem)) | |
103 (throw 'result result))))))) | |
104 | |
105 (defvar latexenc-dont-use-TeX-master-flag nil | |
106 "Non-nil means don't follow TeX-master to find the coding system.") | |
107 | |
108 (defvar latexenc-dont-use-tex-guess-main-file-flag nil | |
109 "Non-nil means don't use tex-guessmain-file to find the coding system.") | |
110 | |
111 ;;;###autoload | |
112 (defun latexenc-find-file-coding-system (arg-list) | |
113 "Determine the coding system of a LaTeX file if it uses \"inputenc.sty\". | |
114 The mapping from LaTeX's \"inputenc.sty\" encoding names to Emacs | |
115 coding system names is determined from `latex-inputenc-coding-alist'." | |
116 (if (eq (car arg-list) 'insert-file-contents) | |
117 (save-excursion | |
118 ;; try to find the coding system in this file | |
119 (goto-char (point-min)) | |
62243
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
120 (if (catch 'cs |
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
121 (let ((case-fold-search nil)) |
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
122 (while (search-forward "inputenc" nil t) |
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
123 (goto-char (match-beginning 0)) |
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
124 (beginning-of-line) |
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
125 (if (or (looking-at "[^%\n]*\\\\usepackage\\[\\([^]]*\\)\\]{\\([^}]*,\\)?inputenc\\(,[^}]*\\)?}") |
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
126 (looking-at "[^%\n]*\\\\inputencoding{\\([^}]*\\)}")) |
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
127 (throw 'cs t) |
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
128 (goto-char (match-end 0)))))) |
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
129 (let* ((match (match-string 1)) |
62974
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
130 (sym (or (latexenc-inputenc-to-coding-system match) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
131 (intern match)))) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
132 (cond |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
133 ((coding-system-p sym) sym) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
134 ((and (require 'code-pages nil t) (coding-system-p sym)) sym) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
135 (t 'undecided))) |
61909 | 136 ;; else try to find it in the master/main file |
72322
2552d32034c7
(latexenc-find-file-coding-system):
Kenichi Handa <handa@m17n.org>
parents:
68421
diff
changeset
|
137 |
2552d32034c7
(latexenc-find-file-coding-system):
Kenichi Handa <handa@m17n.org>
parents:
68421
diff
changeset
|
138 ;; Fixme: If the current file is in an archive (e.g. tar, |
2552d32034c7
(latexenc-find-file-coding-system):
Kenichi Handa <handa@m17n.org>
parents:
68421
diff
changeset
|
139 ;; zip), we should find the master file in that archive. |
2552d32034c7
(latexenc-find-file-coding-system):
Kenichi Handa <handa@m17n.org>
parents:
68421
diff
changeset
|
140 ;; But, that is not yet implemented. -- K.Handa |
2552d32034c7
(latexenc-find-file-coding-system):
Kenichi Handa <handa@m17n.org>
parents:
68421
diff
changeset
|
141 (let ((default-directory (if (stringp (nth 1 arg-list)) |
2552d32034c7
(latexenc-find-file-coding-system):
Kenichi Handa <handa@m17n.org>
parents:
68421
diff
changeset
|
142 (file-name-directory (nth 1 arg-list)) |
2552d32034c7
(latexenc-find-file-coding-system):
Kenichi Handa <handa@m17n.org>
parents:
68421
diff
changeset
|
143 default-directory)) |
2552d32034c7
(latexenc-find-file-coding-system):
Kenichi Handa <handa@m17n.org>
parents:
68421
diff
changeset
|
144 latexenc-main-file) |
62974
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
145 ;; Is there a TeX-master or tex-main-file in the local variables |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
146 ;; section? |
61909 | 147 (unless latexenc-dont-use-TeX-master-flag |
148 (goto-char (point-max)) | |
62974
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
149 (search-backward "\n\^L" (max (- (point-max) 3000) (point-min)) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
150 'move) |
62243
68b153fd6cd9
(latexenc-find-file-coding-system): Avoid `re-search-forward' when
Lute Kamstra <lute@gnu.org>
parents:
61958
diff
changeset
|
151 (search-forward "Local Variables:" nil t) |
62974
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
152 (when (re-search-forward |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
153 "^%+ *\\(TeX-master\\|tex-main-file\\): *\"\\(.+\\)\"" |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
154 nil t) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
155 (let ((file (match-string 2))) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
156 (dolist (ext `("" ,(if (boundp 'TeX-default-extension) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
157 (concat "." TeX-default-extension) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
158 "") |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
159 ".tex" ".ltx" ".dtx" ".drv")) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
160 (if (and (null latexenc-main-file) ;Stop at first. |
68421 | 161 (file-exists-p (concat file ext))) |
62974
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
162 (setq latexenc-main-file (concat file ext))))))) |
61909 | 163 ;; try tex-modes tex-guess-main-file |
164 (when (and (not latexenc-dont-use-tex-guess-main-file-flag) | |
63084
33bc4355d988
(latexenc-find-file-coding-system):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62974
diff
changeset
|
165 (not latexenc-main-file)) |
33bc4355d988
(latexenc-find-file-coding-system):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62974
diff
changeset
|
166 ;; Use a separate `when' so the byte-compiler sees the fboundp. |
33bc4355d988
(latexenc-find-file-coding-system):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62974
diff
changeset
|
167 (when (fboundp 'tex-guess-main-file) |
33bc4355d988
(latexenc-find-file-coding-system):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62974
diff
changeset
|
168 (let ((tex-start-of-header "\\\\document\\(style\\|class\\)")) |
33bc4355d988
(latexenc-find-file-coding-system):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62974
diff
changeset
|
169 (setq latexenc-main-file (tex-guess-main-file))))) |
61909 | 170 ;; if we found a master/main file get the coding system from it |
171 (if (and latexenc-main-file | |
68418
0927d6785ca7
(latexenc-find-file-coding-system): Make sure latexenc-main-file is
Eli Zaretskii <eliz@gnu.org>
parents:
68356
diff
changeset
|
172 (file-regular-p latexenc-main-file) |
61909 | 173 (file-readable-p latexenc-main-file)) |
174 (let* ((latexenc-dont-use-tex-guess-main-file-flag t) | |
175 (latexenc-dont-use-TeX-master-flag t) | |
62974
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
176 (latexenc-main-buffer |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
177 (find-file-noselect latexenc-main-file t))) |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
178 (coding-system-base ;Disregard the EOL part of the CS. |
ecfed70e0c5c
(latexenc-find-file-coding-system): Don't inherit the EOL part of the
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
62398
diff
changeset
|
179 (with-current-buffer latexenc-main-buffer |
79543
5b9f6405b71a
(latexenc-find-file-coding-system): If both coding-system-for-write and
Eli Zaretskii <eliz@gnu.org>
parents:
78274
diff
changeset
|
180 (or coding-system-for-write buffer-file-coding-system |
5b9f6405b71a
(latexenc-find-file-coding-system): If both coding-system-for-write and
Eli Zaretskii <eliz@gnu.org>
parents:
78274
diff
changeset
|
181 'undecided)))) |
61909 | 182 'undecided)))) |
183 'undecided)) | |
184 | |
62398
d0d78600444a
Add page marker to force the "Local Variables:" string out of the last page.
Juanma Barranquero <lekktu@gmail.com>
parents:
62243
diff
changeset
|
185 |
61909 | 186 (provide 'latexenc) |
187 | |
61920 | 188 ;; arch-tag: f971bc3e-1fec-4609-8f2f-73dd41ab22e1 |
61909 | 189 ;;; latexenc.el ends here |