Mercurial > emacs
annotate lisp/mail/footnote.el @ 110402:c848ff4a679b
* lisp/obsolete/old-whitespace.el (whitespace-rescan-files-in-buffers):
Use with-current-buffer.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Sat, 18 Sep 2010 00:28:10 +0200 |
parents | 1d1d5d9bd884 |
children | 376148b31b5e |
rev | line source |
---|---|
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
27830
diff
changeset
|
1 ;;; footnote.el --- footnote support for message mode -*- coding: iso-latin-1;-*- |
26784 | 2 |
74509 | 3 ;; Copyright (C) 1997, 2000, 2001, 2002, 2003, 2004, |
106815 | 4 ;; 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
26784 | 5 |
6 ;; Author: Steven L Baur <steve@xemacs.org> | |
7 ;; Keywords: mail, news | |
8 ;; Version: 0.19 | |
9 | |
26815
9fa9fd18d083
Require cl when compiling. Don't autoload kemap and minor-mode-alist
Dave Love <fx@gnu.org>
parents:
26784
diff
changeset
|
10 ;; This file is part of GNU Emacs. |
26784 | 11 |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
12 ;; GNU Emacs is free software: you can redistribute it and/or modify |
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
13 ;; it under the terms of the GNU General Public License as published by |
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
14 ;; the Free Software Foundation, either version 3 of the License, or |
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
15 ;; (at your option) any later version. |
26784 | 16 |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
17 ;; GNU Emacs is distributed in the hope that it will be useful, |
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
20 ;; GNU General Public License for more details. |
26784 | 21 |
22 ;; You should have received a copy of the GNU General Public License | |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
93975
diff
changeset
|
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
26784 | 24 |
25 ;;; Commentary: | |
26 | |
27 ;; This file provides footnote[1] support for message-mode in emacsen. | |
28 ;; footnote-mode is implemented as a minor mode. | |
29 | |
30 ;; [1] Footnotes look something like this. Along with some decorative | |
31 ;; stuff. | |
32 | |
33 ;; TODO: | |
34 ;; Reasonable Undo support. | |
35 ;; more language styles. | |
36 | |
37 ;;; Code: | |
38 | |
26815
9fa9fd18d083
Require cl when compiling. Don't autoload kemap and minor-mode-alist
Dave Love <fx@gnu.org>
parents:
26784
diff
changeset
|
39 (eval-when-compile |
9fa9fd18d083
Require cl when compiling. Don't autoload kemap and minor-mode-alist
Dave Love <fx@gnu.org>
parents:
26784
diff
changeset
|
40 (require 'cl) |
9fa9fd18d083
Require cl when compiling. Don't autoload kemap and minor-mode-alist
Dave Love <fx@gnu.org>
parents:
26784
diff
changeset
|
41 (defvar filladapt-token-table)) |
9fa9fd18d083
Require cl when compiling. Don't autoload kemap and minor-mode-alist
Dave Love <fx@gnu.org>
parents:
26784
diff
changeset
|
42 |
26784 | 43 (defgroup footnote nil |
44 "Support for footnotes in mail and news messages." | |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
45 :version "21.1" |
26784 | 46 :group 'message) |
47 | |
48 (defcustom footnote-mode-line-string " FN" | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
49 "String to display in modes section of the mode-line." |
26784 | 50 :group 'footnote) |
51 | |
52 (defcustom footnote-mode-hook nil | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
53 "Hook functions run when footnote-mode is activated." |
26784 | 54 :type 'hook |
55 :group 'footnote) | |
56 | |
57 (defcustom footnote-narrow-to-footnotes-when-editing nil | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
58 "If non-nil, narrow to footnote text body while editing a footnote." |
26784 | 59 :type 'boolean |
60 :group 'footnote) | |
61 | |
62 (defcustom footnote-prompt-before-deletion t | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
63 "If non-nil, prompt before deleting a footnote. |
26784 | 64 There is currently no way to undo deletions." |
65 :type 'boolean | |
66 :group 'footnote) | |
67 | |
68 (defcustom footnote-spaced-footnotes t | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
69 "If non-nil, insert an empty line between footnotes. |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
70 Customizing this variable has no effect on buffers already |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
71 displaying footnotes." |
26784 | 72 :type 'boolean |
73 :group 'footnote) | |
74 | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
75 (defcustom footnote-use-message-mode t ; Nowhere used. |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
76 "If non-nil, assume Footnoting will be done in `message-mode'." |
26784 | 77 :type 'boolean |
78 :group 'footnote) | |
79 | |
80 (defcustom footnote-body-tag-spacing 2 | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
81 "Number of spaces separating a footnote body tag and its text. |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
82 Customizing this variable has no effect on buffers already |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
83 displaying footnotes." |
26784 | 84 :type 'integer |
85 :group 'footnote) | |
86 | |
104817
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
87 (defcustom footnote-prefix [(control ?c) ?!] |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
88 "Prefix key to use for Footnote command in Footnote minor mode. |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
89 The value of this variable is checked as part of loading Footnote mode. |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
90 After that, changing the prefix key requires manipulating keymaps." |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
91 ;; FIXME: the type should be a key-sequence, but it seems Custom |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
92 ;; doesn't support that yet. |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
93 ;; :type 'string |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
94 ) |
26784 | 95 |
96 ;;; Interface variables that probably shouldn't be changed | |
97 | |
56448
b56847dec7b7
(footnote-section-tag): Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
98 (defcustom footnote-section-tag "Footnotes: " |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
99 "Tag inserted at beginning of footnote section. |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
100 If you set this to the empty string, no tag is inserted and the |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
101 value of `footnote-section-tag-regexp' is ignored. Customizing |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
102 this variable has no effect on buffers already displaying |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
103 footnotes." |
56448
b56847dec7b7
(footnote-section-tag): Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
104 :type 'string |
b56847dec7b7
(footnote-section-tag): Use defcustom.
Richard M. Stallman <rms@gnu.org>
parents:
52401
diff
changeset
|
105 :group 'footnote) |
26784 | 106 |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
107 (defcustom footnote-section-tag-regexp "Footnotes\\(\\[.\\]\\)?: " |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
108 "Regexp which indicates the start of a footnote section. |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
109 This variable is disregarded when `footnote-section-tag' is the |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
110 empty string. Customizing this variable has no effect on buffers |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
111 already displaying footnotes." |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
112 :type 'regexp |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
113 :group 'footnote) |
26784 | 114 |
115 ;; The following three should be consumed by footnote styles. | |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
116 (defcustom footnote-start-tag "[" |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
117 "String used to denote start of numbered footnote. |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
118 Should not be set to the empty string. Customizing this variable |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
119 has no effect on buffers already displaying footnotes." |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
120 :type 'string |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
121 :group 'footnote) |
26784 | 122 |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
123 (defcustom footnote-end-tag "]" |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
124 "String used to denote end of numbered footnote. |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
125 Should not be set to the empty string. Customizing this variable |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
126 has no effect on buffers already displaying footnotes." |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
127 :type 'string |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
128 :group 'footnote) |
26784 | 129 |
130 (defvar footnote-signature-separator (if (boundp 'message-signature-separator) | |
131 message-signature-separator | |
132 "^-- $") | |
133 "*String used to recognize .signatures.") | |
134 | |
135 ;;; Private variables | |
136 | |
137 (defvar footnote-style-number nil | |
138 "Footnote style represented as an index into footnote-style-alist.") | |
139 (make-variable-buffer-local 'footnote-style-number) | |
140 | |
141 (defvar footnote-text-marker-alist nil | |
142 "List of markers pointing to text of footnotes in message buffer.") | |
143 (make-variable-buffer-local 'footnote-text-marker-alist) | |
144 | |
145 (defvar footnote-pointer-marker-alist nil | |
146 "List of markers pointing to footnote pointers in message buffer.") | |
147 (make-variable-buffer-local 'footnote-pointer-marker-alist) | |
148 | |
149 (defvar footnote-mouse-highlight 'highlight | |
150 "Text property name to enable mouse over highlight.") | |
151 | |
152 ;;; Default styles | |
153 ;;; NUMERIC | |
79299 | 154 (defconst footnote-numeric-regexp "[0-9]+" |
26784 | 155 "Regexp for digits.") |
156 | |
157 (defun Footnote-numeric (n) | |
158 "Numeric footnote style. | |
159 Use Arabic numerals for footnoting." | |
160 (int-to-string n)) | |
161 | |
162 ;;; ENGLISH UPPER | |
163 (defconst footnote-english-upper "ABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
164 "Upper case English alphabet.") | |
165 | |
79299 | 166 (defconst footnote-english-upper-regexp "[A-Z]+" |
26784 | 167 "Regexp for upper case English alphabet.") |
168 | |
169 (defun Footnote-english-upper (n) | |
170 "Upper case English footnoting. | |
171 Wrapping around the alphabet implies successive repetitions of letters." | |
172 (let* ((ltr (mod (1- n) (length footnote-english-upper))) | |
173 (rep (/ (1- n) (length footnote-english-upper))) | |
174 (chr (char-to-string (aref footnote-english-upper ltr))) | |
175 rc) | |
176 (while (>= rep 0) | |
177 (setq rc (concat rc chr)) | |
178 (setq rep (1- rep))) | |
179 rc)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42205
diff
changeset
|
180 |
26784 | 181 ;;; ENGLISH LOWER |
182 (defconst footnote-english-lower "abcdefghijklmnopqrstuvwxyz" | |
183 "Lower case English alphabet.") | |
184 | |
79299 | 185 (defconst footnote-english-lower-regexp "[a-z]+" |
26784 | 186 "Regexp of lower case English alphabet.") |
187 | |
188 (defun Footnote-english-lower (n) | |
189 "Lower case English footnoting. | |
190 Wrapping around the alphabet implies successive repetitions of letters." | |
191 (let* ((ltr (mod (1- n) (length footnote-english-lower))) | |
192 (rep (/ (1- n) (length footnote-english-lower))) | |
193 (chr (char-to-string (aref footnote-english-lower ltr))) | |
194 rc) | |
195 (while (>= rep 0) | |
196 (setq rc (concat rc chr)) | |
197 (setq rep (1- rep))) | |
198 rc)) | |
199 | |
200 ;;; ROMAN LOWER | |
201 (defconst footnote-roman-lower-list | |
202 '((1 . "i") (5 . "v") (10 . "x") | |
203 (50 . "l") (100 . "c") (500 . "d") (1000 . "m")) | |
204 "List of roman numerals with their values.") | |
205 | |
79299 | 206 (defconst footnote-roman-lower-regexp "[ivxlcdm]+" |
26784 | 207 "Regexp of roman numerals.") |
208 | |
209 (defun Footnote-roman-lower (n) | |
210 "Generic Roman number footnoting." | |
211 (Footnote-roman-common n footnote-roman-lower-list)) | |
212 | |
213 ;;; ROMAN UPPER | |
214 (defconst footnote-roman-upper-list | |
215 '((1 . "I") (5 . "V") (10 . "X") | |
216 (50 . "L") (100 . "C") (500 . "D") (1000 . "M")) | |
217 "List of roman numerals with their values.") | |
218 | |
79299 | 219 (defconst footnote-roman-upper-regexp "[IVXLCDM]+" |
26784 | 220 "Regexp of roman numerals. Not complete") |
221 | |
222 (defun Footnote-roman-upper (n) | |
223 "Generic Roman number footnoting." | |
224 (Footnote-roman-common n footnote-roman-upper-list)) | |
225 | |
226 (defun Footnote-roman-common (n footnote-roman-list) | |
227 "Lower case Roman footnoting." | |
228 (let* ((our-list footnote-roman-list) | |
229 (rom-lngth (length our-list)) | |
230 (rom-high 0) | |
231 (rom-low 0) | |
232 (rom-div -1) | |
233 (count-high 0) | |
234 (count-low 0)) | |
235 ;; find surrounding numbers | |
236 (while (and (<= count-high (1- rom-lngth)) | |
237 (>= n (car (nth count-high our-list)))) | |
238 ;; (message "Checking %d" (car (nth count-high our-list))) | |
239 (setq count-high (1+ count-high))) | |
240 (setq rom-high count-high) | |
241 (setq rom-low (1- count-high)) | |
242 ;; find the appropriate divisor (if it exists) | |
243 (while (and (= rom-div -1) | |
244 (< count-low rom-high)) | |
245 (when (or (> n (- (car (nth rom-high our-list)) | |
246 (/ (car (nth count-low our-list)) | |
247 2))) | |
248 (= n (- (car (nth rom-high our-list)) | |
249 (car (nth count-low our-list))))) | |
250 (setq rom-div count-low)) | |
251 ;; (message "Checking %d and %d in div loop" rom-high count-low) | |
252 (setq count-low (1+ count-low))) | |
253 ;;(message "We now have high: %d, low: %d, div: %d, n: %d" | |
254 ;; rom-high rom-low (if rom-div rom-div -1) n) | |
255 (let ((rom-low-pair (nth rom-low our-list)) | |
256 (rom-high-pair (nth rom-high our-list)) | |
257 (rom-div-pair (if (not (= rom-div -1)) (nth rom-div our-list) nil))) | |
258 ;; (message "pairs are: rom-low: %S, rom-high: %S, rom-div: %S" | |
259 ;; rom-low-pair rom-high-pair rom-div-pair) | |
260 (cond | |
261 ((< n 0) (error "Footnote-roman-common called with n < 0")) | |
262 ((= n 0) "") | |
263 ((= n (car rom-low-pair)) (cdr rom-low-pair)) | |
264 ((= n (car rom-high-pair)) (cdr rom-high-pair)) | |
265 ((= (car rom-low-pair) (car rom-high-pair)) | |
266 (concat (cdr rom-low-pair) | |
267 (Footnote-roman-common | |
268 (- n (car rom-low-pair)) | |
269 footnote-roman-list))) | |
270 ((>= rom-div 0) (concat (cdr rom-div-pair) (cdr rom-high-pair) | |
271 (Footnote-roman-common | |
272 (- n (- (car rom-high-pair) | |
273 (car rom-div-pair))) | |
274 footnote-roman-list))) | |
275 (t (concat (cdr rom-low-pair) | |
276 (Footnote-roman-common | |
277 (- n (car rom-low-pair)) | |
278 footnote-roman-list))))))) | |
279 | |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
280 ;; Latin-1 |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
281 |
77164
0d019d25db47
(footnote-latin-string): New variable.
Martin Rudalics <rudalics@gmx.at>
parents:
75347
diff
changeset
|
282 (defconst footnote-latin-string "¹²³ºª§¶" |
0d019d25db47
(footnote-latin-string): New variable.
Martin Rudalics <rudalics@gmx.at>
parents:
75347
diff
changeset
|
283 "String of Latin-1 footnoting characters.") |
0d019d25db47
(footnote-latin-string): New variable.
Martin Rudalics <rudalics@gmx.at>
parents:
75347
diff
changeset
|
284 |
79299 | 285 ;; Note not [...]+, because this style cycles. |
77164
0d019d25db47
(footnote-latin-string): New variable.
Martin Rudalics <rudalics@gmx.at>
parents:
75347
diff
changeset
|
286 (defconst footnote-latin-regexp (concat "[" footnote-latin-string "]") |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
287 "Regexp for Latin-1 footnoting characters.") |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
288 |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
289 (defun Footnote-latin (n) |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
290 "Latin-1 footnote style. |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
291 Use a range of Latin-1 non-ASCII characters for footnoting." |
77164
0d019d25db47
(footnote-latin-string): New variable.
Martin Rudalics <rudalics@gmx.at>
parents:
75347
diff
changeset
|
292 (string (aref footnote-latin-string |
0d019d25db47
(footnote-latin-string): New variable.
Martin Rudalics <rudalics@gmx.at>
parents:
75347
diff
changeset
|
293 (mod (1- n) (length footnote-latin-string))))) |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
294 |
26784 | 295 ;;; list of all footnote styles |
296 (defvar footnote-style-alist | |
297 `((numeric Footnote-numeric ,footnote-numeric-regexp) | |
298 (english-lower Footnote-english-lower ,footnote-english-lower-regexp) | |
299 (english-upper Footnote-english-upper ,footnote-english-upper-regexp) | |
300 (roman-lower Footnote-roman-lower ,footnote-roman-lower-regexp) | |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
301 (roman-upper Footnote-roman-upper ,footnote-roman-upper-regexp) |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
302 (latin Footnote-latin ,footnote-latin-regexp)) |
26784 | 303 "Styles of footnote tags available. |
304 By default only boring Arabic numbers, English letters and Roman Numerals | |
305 are available. | |
306 See footnote-han.el, footnote-greek.el and footnote-hebrew.el for more | |
307 exciting styles.") | |
308 | |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
309 (defcustom footnote-style 'numeric |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
310 "Default style used for footnoting. |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
311 numeric == 1, 2, 3, ... |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
312 english-lower == a, b, c, ... |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
313 english-upper == A, B, C, ... |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
314 roman-lower == i, ii, iii, iv, v, ... |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
315 roman-upper == I, II, III, IV, V, ... |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
316 latin == ¹ ² ³ º ª § ¶ |
77227
8a6e5c01dde1
(footnote-style): Clarify docstring to state that customizing this
Chong Yidong <cyd@stupidchicken.com>
parents:
77225
diff
changeset
|
317 See also variables `footnote-start-tag' and `footnote-end-tag'. |
8a6e5c01dde1
(footnote-style): Clarify docstring to state that customizing this
Chong Yidong <cyd@stupidchicken.com>
parents:
77225
diff
changeset
|
318 |
8a6e5c01dde1
(footnote-style): Clarify docstring to state that customizing this
Chong Yidong <cyd@stupidchicken.com>
parents:
77225
diff
changeset
|
319 Customizing this variable has no effect on buffers already |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
320 displaying footnotes. To change the style of footnotes in such a |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
321 buffer use the command `Footnote-set-style'." |
27830
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
322 :type (cons 'choice (mapcar (lambda (x) (list 'const (car x))) |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
323 footnote-style-alist)) |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
324 :group 'footnote) |
99b1d31f039b
(footnote): Add :version to defgroup.
Dave Love <fx@gnu.org>
parents:
26815
diff
changeset
|
325 |
26784 | 326 ;;; Style utilities & functions |
327 (defun Footnote-style-p (style) | |
328 "Return non-nil if style is a valid style known to footnote-mode." | |
329 (assq style footnote-style-alist)) | |
330 | |
331 (defun Footnote-index-to-string (index) | |
332 "Convert a binary index into a string to display as a footnote. | |
333 Conversion is done based upon the current selected style." | |
77225 | 334 (let ((alist (if (Footnote-style-p footnote-style) |
335 (assq footnote-style footnote-style-alist) | |
26784 | 336 (nth 0 footnote-style-alist)))) |
337 (funcall (nth 1 alist) index))) | |
338 | |
339 (defun Footnote-current-regexp () | |
340 "Return the regexp of the index of the current style." | |
77225 | 341 (concat (nth 2 (or (assq footnote-style footnote-style-alist) |
79632 | 342 (nth 0 footnote-style-alist))) |
343 "*")) | |
26784 | 344 |
345 (defun Footnote-refresh-footnotes (&optional index-regexp) | |
346 "Redraw all footnotes. | |
347 You must call this or arrange to have this called after changing footnote | |
348 styles." | |
349 (unless index-regexp | |
350 (setq index-regexp (Footnote-current-regexp))) | |
351 (save-excursion | |
352 ;; Take care of the pointers first | |
353 (let ((i 0) locn alist) | |
354 (while (setq alist (nth i footnote-pointer-marker-alist)) | |
355 (setq locn (cdr alist)) | |
356 (while locn | |
357 (goto-char (car locn)) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
358 ;; Try to handle the case where `footnote-start-tag' and |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
359 ;; `footnote-end-tag' are the same string. |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
360 (when (looking-back (concat |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
361 (regexp-quote footnote-start-tag) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
362 "\\(" index-regexp "+\\)" |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
363 (regexp-quote footnote-end-tag)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
364 (line-beginning-position)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
365 (replace-match |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
366 (propertize |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
367 (concat |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
368 footnote-start-tag |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
369 (Footnote-index-to-string (1+ i)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
370 footnote-end-tag) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
371 'footnote-number (1+ i) footnote-mouse-highlight t) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
372 nil "\\1")) |
26784 | 373 (setq locn (cdr locn))) |
374 (setq i (1+ i)))) | |
375 | |
376 ;; Now take care of the text section | |
377 (let ((i 0) alist) | |
378 (while (setq alist (nth i footnote-text-marker-alist)) | |
379 (goto-char (cdr alist)) | |
380 (when (looking-at (concat | |
381 (regexp-quote footnote-start-tag) | |
79632 | 382 "\\(" index-regexp "+\\)" |
26784 | 383 (regexp-quote footnote-end-tag))) |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
384 (replace-match |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
385 (propertize |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
386 (concat |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
387 footnote-start-tag |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
388 (Footnote-index-to-string (1+ i)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
389 footnote-end-tag) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
390 'footnote-number (1+ i)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
391 nil "\\1")) |
26784 | 392 (setq i (1+ i)))))) |
393 | |
394 (defun Footnote-assoc-index (key alist) | |
395 "Give index of key in alist." | |
396 (let ((i 0) (max (length alist)) rc) | |
397 (while (and (null rc) | |
398 (< i max)) | |
399 (when (eq key (car (nth i alist))) | |
400 (setq rc i)) | |
401 (setq i (1+ i))) | |
402 rc)) | |
403 | |
404 (defun Footnote-cycle-style () | |
405 "Select next defined footnote style." | |
406 (interactive) | |
77225 | 407 (let ((old (Footnote-assoc-index footnote-style footnote-style-alist)) |
26784 | 408 (max (length footnote-style-alist)) |
409 idx) | |
410 (setq idx (1+ old)) | |
411 (when (>= idx max) | |
412 (setq idx 0)) | |
77225 | 413 (setq footnote-style (car (nth idx footnote-style-alist))) |
26784 | 414 (Footnote-refresh-footnotes (nth 2 (nth old footnote-style-alist))))) |
415 | |
416 (defun Footnote-set-style (&optional style) | |
417 "Select a specific style." | |
418 (interactive | |
419 (list (intern (completing-read | |
420 "Footnote Style: " | |
421 obarray #'Footnote-style-p 'require-match)))) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
422 (let ((old (Footnote-assoc-index footnote-style footnote-style-alist))) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
423 (setq footnote-style style) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
424 (Footnote-refresh-footnotes (nth 2 (nth old footnote-style-alist))))) |
26784 | 425 |
426 ;; Internal functions | |
427 (defun Footnote-insert-numbered-footnote (arg &optional mousable) | |
428 "Insert numbered footnote at (point)." | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
429 (let ((string (concat footnote-start-tag |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
430 (Footnote-index-to-string arg) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
431 footnote-end-tag))) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
432 (insert-before-markers |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
433 (if mousable |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
434 (propertize |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
435 string 'footnote-number arg footnote-mouse-highlight t) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
436 (propertize string 'footnote-number arg))))) |
26784 | 437 |
438 (defun Footnote-renumber (from to pointer-alist text-alist) | |
439 "Renumber a single footnote." | |
440 (let* ((posn-list (cdr pointer-alist))) | |
441 (setcar pointer-alist to) | |
442 (setcar text-alist to) | |
443 (while posn-list | |
444 (goto-char (car posn-list)) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
445 (when (looking-back (concat (regexp-quote footnote-start-tag) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
446 (Footnote-current-regexp) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
447 (regexp-quote footnote-end-tag)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
448 (line-beginning-position)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
449 (replace-match |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
450 (propertize |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
451 (concat footnote-start-tag |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
452 (Footnote-index-to-string to) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
453 footnote-end-tag) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
454 'footnote-number to footnote-mouse-highlight t))) |
26784 | 455 (setq posn-list (cdr posn-list))) |
456 (goto-char (cdr text-alist)) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
457 (when (looking-at (concat (regexp-quote footnote-start-tag) |
26784 | 458 (Footnote-current-regexp) |
459 (regexp-quote footnote-end-tag))) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
460 (replace-match |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
461 (propertize |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
462 (concat footnote-start-tag |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
463 (Footnote-index-to-string to) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
464 footnote-end-tag) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
465 'footnote-number to))))) |
26784 | 466 |
467 ;; Not needed? | |
468 (defun Footnote-narrow-to-footnotes () | |
469 "Restrict text in buffer to show only text of footnotes." | |
470 (interactive) ; testing | |
471 (goto-char (point-max)) | |
472 (when (re-search-backward footnote-signature-separator nil t) | |
473 (let ((end (point))) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
474 (cond |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
475 ((and (not (string-equal footnote-section-tag "")) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
476 (re-search-backward |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
477 (concat "^" footnote-section-tag-regexp) nil t)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
478 (narrow-to-region (point) end)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
479 (footnote-text-marker-alist |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
480 (narrow-to-region (cdar footnote-text-marker-alist) end)))))) |
26784 | 481 |
482 (defun Footnote-goto-char-point-max () | |
483 "Move to end of buffer or prior to start of .signature." | |
484 (goto-char (point-max)) | |
485 (or (re-search-backward footnote-signature-separator nil t) | |
486 (point))) | |
487 | |
488 (defun Footnote-insert-text-marker (arg locn) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
489 "Insert a marker pointing to footnote ARG, at buffer location LOCN." |
26784 | 490 (let ((marker (make-marker))) |
491 (unless (assq arg footnote-text-marker-alist) | |
492 (set-marker marker locn) | |
493 (setq footnote-text-marker-alist | |
26815
9fa9fd18d083
Require cl when compiling. Don't autoload kemap and minor-mode-alist
Dave Love <fx@gnu.org>
parents:
26784
diff
changeset
|
494 (cons (cons arg marker) footnote-text-marker-alist)) |
26784 | 495 (setq footnote-text-marker-alist |
496 (Footnote-sort footnote-text-marker-alist))))) | |
497 | |
498 (defun Footnote-insert-pointer-marker (arg locn) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
499 "Insert a marker pointing to footnote ARG, at buffer location LOCN." |
26784 | 500 (let ((marker (make-marker)) |
501 alist) | |
502 (set-marker marker locn) | |
503 (if (setq alist (assq arg footnote-pointer-marker-alist)) | |
504 (setf alist | |
505 (cons marker (cdr alist))) | |
506 (setq footnote-pointer-marker-alist | |
26815
9fa9fd18d083
Require cl when compiling. Don't autoload kemap and minor-mode-alist
Dave Love <fx@gnu.org>
parents:
26784
diff
changeset
|
507 (cons (cons arg (list marker)) footnote-pointer-marker-alist)) |
26784 | 508 (setq footnote-pointer-marker-alist |
509 (Footnote-sort footnote-pointer-marker-alist))))) | |
510 | |
511 (defun Footnote-insert-footnote (arg) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
512 "Insert a footnote numbered ARG, at (point)." |
26784 | 513 (push-mark) |
514 (Footnote-insert-pointer-marker arg (point)) | |
515 (Footnote-insert-numbered-footnote arg t) | |
516 (Footnote-goto-char-point-max) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
517 (if (cond |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
518 ((not (string-equal footnote-section-tag "")) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
519 (re-search-backward (concat "^" footnote-section-tag-regexp) nil t)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
520 (footnote-text-marker-alist |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
521 (goto-char (cdar footnote-text-marker-alist)))) |
26784 | 522 (save-restriction |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42205
diff
changeset
|
523 (when footnote-narrow-to-footnotes-when-editing |
26784 | 524 (Footnote-narrow-to-footnotes)) |
525 (Footnote-goto-footnote (1- arg)) ; evil, FIXME (less evil now) | |
526 ;; (message "Inserting footnote %d" arg) | |
527 (unless | |
528 (or (eq arg 1) | |
529 (when (re-search-forward | |
530 (if footnote-spaced-footnotes | |
531 "\n\n" | |
532 (concat "\n" | |
533 (regexp-quote footnote-start-tag) | |
534 (Footnote-current-regexp) | |
535 (regexp-quote footnote-end-tag))) | |
536 nil t) | |
537 (unless (beginning-of-line) t)) | |
74919
c27a32ee3586
(Footnote-insert-footnote): Fix the search of the last footnote when
Michaël Cadilhac <michael.cadilhac@lrde.org>
parents:
74509
diff
changeset
|
538 (Footnote-goto-char-point-max) |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
539 (cond |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
540 ((not (string-equal footnote-section-tag "")) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
541 (re-search-backward |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
542 (concat "^" footnote-section-tag-regexp) nil t)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
543 (footnote-text-marker-alist |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
544 (goto-char (cdar footnote-text-marker-alist))))))) |
26784 | 545 (unless (looking-at "^$") |
546 (insert "\n")) | |
547 (when (eobp) | |
548 (insert "\n")) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
549 (unless (string-equal footnote-section-tag "") |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
550 (insert footnote-section-tag "\n"))) |
26784 | 551 (let ((old-point (point))) |
552 (Footnote-insert-numbered-footnote arg nil) | |
553 (Footnote-insert-text-marker arg old-point))) | |
554 | |
555 (defun Footnote-sort (list) | |
556 (sort list (lambda (e1 e2) | |
557 (< (car e1) (car e2))))) | |
558 | |
559 (defun Footnote-text-under-cursor () | |
560 "Return the number of footnote if in footnote text. | |
42205 | 561 Return nil if the cursor is not positioned over the text of |
26784 | 562 a footnote." |
563 (when (and (let ((old-point (point))) | |
564 (save-excursion | |
565 (save-restriction | |
566 (Footnote-narrow-to-footnotes) | |
567 (and (>= old-point (point-min)) | |
568 (<= old-point (point-max)))))) | |
104840
b255a4a2d4f5
(Footnote-text-under-cursor):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
104817
diff
changeset
|
569 footnote-text-marker-alist |
b255a4a2d4f5
(Footnote-text-under-cursor):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
104817
diff
changeset
|
570 (>= (point) (cdar footnote-text-marker-alist))) |
26784 | 571 (let ((i 1) |
572 alist-txt rc) | |
573 (while (and (setq alist-txt (nth i footnote-text-marker-alist)) | |
574 (null rc)) | |
575 (when (< (point) (cdr alist-txt)) | |
576 (setq rc (car (nth (1- i) footnote-text-marker-alist)))) | |
577 (setq i (1+ i))) | |
578 (when (and (null rc) | |
579 (null alist-txt)) | |
580 (setq rc (car (nth (1- i) footnote-text-marker-alist)))) | |
581 rc))) | |
582 | |
583 (defun Footnote-under-cursor () | |
584 "Return the number of the footnote underneath the cursor. | |
42205 | 585 Return nil if the cursor is not over a footnote." |
26784 | 586 (or (get-text-property (point) 'footnote-number) |
587 (Footnote-text-under-cursor))) | |
588 | |
589 ;;; User functions | |
590 | |
591 (defun Footnote-make-hole () | |
592 (save-excursion | |
593 (let ((i 0) | |
594 (notes (length footnote-pointer-marker-alist)) | |
595 alist-ptr alist-txt rc) | |
596 (while (< i notes) | |
597 (setq alist-ptr (nth i footnote-pointer-marker-alist)) | |
598 (setq alist-txt (nth i footnote-text-marker-alist)) | |
599 (when (< (point) (- (cadr alist-ptr) 3)) | |
600 (unless rc | |
601 (setq rc (car alist-ptr))) | |
602 (save-excursion | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42205
diff
changeset
|
603 (message "Renumbering from %s to %s" |
26784 | 604 (Footnote-index-to-string (car alist-ptr)) |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
42205
diff
changeset
|
605 (Footnote-index-to-string |
26784 | 606 (1+ (car alist-ptr)))) |
607 (Footnote-renumber (car alist-ptr) | |
608 (1+ (car alist-ptr)) | |
609 alist-ptr | |
610 alist-txt))) | |
611 (setq i (1+ i))) | |
612 rc))) | |
613 | |
614 (defun Footnote-add-footnote (&optional arg) | |
615 "Add a numbered footnote. | |
616 The number the footnote receives is dependent upon the relative location | |
617 of any other previously existing footnotes. | |
618 If the variable `footnote-narrow-to-footnotes-when-editing' is set, | |
619 the buffer is narrowed to the footnote body. The restriction is removed | |
620 by using `Footnote-back-to-message'." | |
621 (interactive "*P") | |
622 (let (num) | |
623 (if footnote-text-marker-alist | |
624 (if (< (point) (cadar (last footnote-pointer-marker-alist))) | |
625 (setq num (Footnote-make-hole)) | |
626 (setq num (1+ (caar (last footnote-text-marker-alist))))) | |
627 (setq num 1)) | |
628 (message "Adding footnote %d" num) | |
629 (Footnote-insert-footnote num) | |
630 (insert-before-markers (make-string footnote-body-tag-spacing ? )) | |
631 (let ((opoint (point))) | |
632 (save-excursion | |
633 (insert-before-markers | |
634 (if footnote-spaced-footnotes | |
635 "\n\n" | |
636 "\n")) | |
637 (when footnote-narrow-to-footnotes-when-editing | |
638 (Footnote-narrow-to-footnotes))) | |
639 ;; Emacs/XEmacs bug? save-excursion doesn't restore point when using | |
640 ;; insert-before-markers. | |
641 (goto-char opoint)))) | |
642 | |
643 (defun Footnote-delete-footnote (&optional arg) | |
644 "Delete a numbered footnote. | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
645 With no parameter, delete the footnote under (point). With ARG specified, |
26784 | 646 delete the footnote with that number." |
647 (interactive "*P") | |
648 (unless arg | |
649 (setq arg (Footnote-under-cursor))) | |
650 (when (and arg | |
651 (or (not footnote-prompt-before-deletion) | |
652 (y-or-n-p (format "Really delete footnote %d?" arg)))) | |
653 (let (alist-ptr alist-txt locn) | |
654 (setq alist-ptr (assq arg footnote-pointer-marker-alist)) | |
655 (setq alist-txt (assq arg footnote-text-marker-alist)) | |
656 (unless (and alist-ptr alist-txt) | |
657 (error "Can't delete footnote %d" arg)) | |
658 (setq locn (cdr alist-ptr)) | |
659 (while (car locn) | |
660 (save-excursion | |
661 (goto-char (car locn)) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
662 (when (looking-back (concat (regexp-quote footnote-start-tag) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
663 (Footnote-current-regexp) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
664 (regexp-quote footnote-end-tag)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
665 (line-beginning-position)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
666 (delete-region (match-beginning 0) (match-end 0)))) |
26784 | 667 (setq locn (cdr locn))) |
668 (save-excursion | |
669 (goto-char (cdr alist-txt)) | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
670 (delete-region |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
671 (point) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
672 (if footnote-spaced-footnotes |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
673 (search-forward "\n\n" nil t) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
674 (save-restriction |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
675 (end-of-line) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
676 (next-single-char-property-change |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
677 (point) 'footnote-number nil (Footnote-goto-char-point-max)))))) |
26784 | 678 (setq footnote-pointer-marker-alist |
679 (delq alist-ptr footnote-pointer-marker-alist)) | |
680 (setq footnote-text-marker-alist | |
681 (delq alist-txt footnote-text-marker-alist)) | |
682 (Footnote-renumber-footnotes) | |
683 (when (and (null footnote-text-marker-alist) | |
684 (null footnote-pointer-marker-alist)) | |
685 (save-excursion | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
686 (if (not (string-equal footnote-section-tag "")) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
687 (let* ((end (Footnote-goto-char-point-max)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
688 (start (1- (re-search-backward |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
689 (concat "^" footnote-section-tag-regexp) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
690 nil t)))) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
691 (forward-line -1) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
692 (when (looking-at "\n") |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
693 (kill-line)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
694 (delete-region start (if (< end (point-max)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
695 end |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
696 (point-max)))) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
697 (Footnote-goto-char-point-max) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
698 (when (looking-back "\n\n") |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
699 (kill-line -1)))))))) |
26784 | 700 |
701 (defun Footnote-renumber-footnotes (&optional arg) | |
702 "Renumber footnotes, starting from 1." | |
703 (interactive "*P") | |
704 (save-excursion | |
705 (let ((i 0) | |
706 (notes (length footnote-pointer-marker-alist)) | |
707 alist-ptr alist-txt) | |
708 (while (< i notes) | |
709 (setq alist-ptr (nth i footnote-pointer-marker-alist)) | |
710 (setq alist-txt (nth i footnote-text-marker-alist)) | |
77164
0d019d25db47
(footnote-latin-string): New variable.
Martin Rudalics <rudalics@gmx.at>
parents:
75347
diff
changeset
|
711 (unless (= (1+ i) (car alist-ptr)) |
26784 | 712 (Footnote-renumber (car alist-ptr) (1+ i) alist-ptr alist-txt)) |
713 (setq i (1+ i)))))) | |
714 | |
715 (defun Footnote-goto-footnote (&optional arg) | |
716 "Jump to the text of a footnote. | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
717 With no parameter, jump to the text of the footnote under (point). With ARG |
26784 | 718 specified, jump to the text of that footnote." |
719 (interactive "P") | |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
720 (unless arg |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
721 (setq arg (Footnote-under-cursor))) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
722 (let ((footnote (assq arg footnote-text-marker-alist))) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
723 (cond |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
724 (footnote |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
725 (goto-char (cdr footnote))) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
726 ((eq arg 0) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
727 (goto-char (point-max)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
728 (cond |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
729 ((not (string-equal footnote-section-tag "")) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
730 (re-search-backward (concat "^" footnote-section-tag-regexp)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
731 (forward-line 1)) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
732 (footnote-text-marker-alist |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
733 (goto-char (cdar footnote-text-marker-alist))))) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
734 (t |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
735 (error "I don't see a footnote here"))))) |
26784 | 736 |
737 (defun Footnote-back-to-message (&optional arg) | |
738 "Move cursor back to footnote referent. | |
739 If the cursor is not over the text of a footnote, point is not changed. | |
740 If the buffer was narrowed due to `footnote-narrow-to-footnotes-when-editing' | |
741 being set it is automatically widened." | |
742 (interactive "P") | |
743 (let ((note (Footnote-text-under-cursor))) | |
744 (when note | |
745 (when footnote-narrow-to-footnotes-when-editing | |
746 (widen)) | |
747 (goto-char (cadr (assq note footnote-pointer-marker-alist)))))) | |
748 | |
104817
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
749 (defvar footnote-mode-map |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
750 (let ((map (make-sparse-keymap))) |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
751 (define-key map "a" 'Footnote-add-footnote) |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
752 (define-key map "b" 'Footnote-back-to-message) |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
753 (define-key map "c" 'Footnote-cycle-style) |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
754 (define-key map "d" 'Footnote-delete-footnote) |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
755 (define-key map "g" 'Footnote-goto-footnote) |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
756 (define-key map "r" 'Footnote-renumber-footnotes) |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
757 (define-key map "s" 'Footnote-set-style) |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
758 map)) |
26784 | 759 |
104817
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
760 (defvar footnote-minor-mode-map |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
761 (let ((map (make-sparse-keymap))) |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
762 (define-key map footnote-prefix footnote-mode-map) |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
763 map) |
26784 | 764 "Keymap used for binding footnote minor mode.") |
765 | |
766 ;;;###autoload | |
104817
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
767 (define-minor-mode footnote-mode |
26784 | 768 "Toggle footnote minor mode. |
99487
647e1c7496bf
(footnote-mode): Improve doc-string.
Martin Rudalics <rudalics@gmx.at>
parents:
98534
diff
changeset
|
769 This minor mode provides footnote support for `message-mode'. To get |
647e1c7496bf
(footnote-mode): Improve doc-string.
Martin Rudalics <rudalics@gmx.at>
parents:
98534
diff
changeset
|
770 started, play around with the following keys: |
104817
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
771 \\{footnote-minor-mode-map}" |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
772 :lighter footnote-mode-line-string |
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
773 :keymap footnote-minor-mode-map |
26784 | 774 ;; (filladapt-mode t) |
775 (when footnote-mode | |
776 ;; (Footnote-setup-keybindings) | |
77225 | 777 (make-local-variable 'footnote-style) |
98534
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
778 (make-local-variable 'footnote-body-tag-spacing) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
779 (make-local-variable 'footnote-spaced-footnotes) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
780 (make-local-variable 'footnote-section-tag) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
781 (make-local-variable 'footnote-section-tag-regexp) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
782 (make-local-variable 'footnote-start-tag) |
3eb71995f60b
Remove * in defcustom docstrings and tell
Martin Rudalics <rudalics@gmx.at>
parents:
94674
diff
changeset
|
783 (make-local-variable 'footnote-end-tag) |
26784 | 784 |
785 (when (boundp 'filladapt-token-table) | |
786 ;; add tokens to filladapt to match footnotes | |
787 ;; 1] xxxxxxxxxxx x x x or [1] x x x x x x x | |
788 ;; xxx x xx xxx xxxx x x x xxxxxxxxxx | |
789 (let ((bullet-regexp (concat (regexp-quote footnote-start-tag) | |
790 "?[0-9a-zA-Z]+" | |
791 (regexp-quote footnote-end-tag) | |
792 "[ \t]"))) | |
793 (unless (assoc bullet-regexp filladapt-token-table) | |
794 (setq filladapt-token-table | |
795 (append filladapt-token-table | |
104817
90d1a4410a0c
(footnote-prefix): Make it a defcustom.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
100908
diff
changeset
|
796 (list (list bullet-regexp 'bullet))))))))) |
26784 | 797 |
798 (provide 'footnote) | |
799 | |
93975
1e3a407766b9
Fix up comment convention on the arch-tag lines.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
79712
diff
changeset
|
800 ;; arch-tag: 9bcfb6d7-2161-4caf-8793-700f62400398 |
26784 | 801 ;;; footnote.el ends here |