Mercurial > emacs
annotate lisp/mail/supercite.el @ 109987:2e817b887353
merge trunk
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 25 Aug 2010 17:15:45 +0900 |
parents | be3f6d650654 |
children | 417b1e4d63cd |
rev | line source |
---|---|
4850 | 1 ;;; supercite.el --- minor mode for citing mail and news replies |
2 | |
102154
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
3 ;; Copyright (C) 1993, 1997, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
106815 | 4 ;; 2008, 2009, 2010 Free Software Foundation, Inc. |
12859
90c22a02c12b
(sc-attribs-extract-namestring): If name has <...>,
Richard M. Stallman <rms@gnu.org>
parents:
12425
diff
changeset
|
5 |
57160 | 6 ;; Author: 1993 Barry A. Warsaw <bwarsaw@python.org> |
65919
5c09efcfc1d9
Update maintainer email address.
Glenn Morris <rgm@gnu.org>
parents:
64832
diff
changeset
|
7 ;; Maintainer: Glenn Morris <rgm@gnu.org> |
4850 | 8 ;; Created: February 1993 |
5140 | 9 ;; Keywords: mail, news |
4850 | 10 |
11 ;; This file is part of GNU Emacs. | |
12 | |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92814
diff
changeset
|
13 ;; GNU Emacs is free software: you can redistribute it and/or modify |
4850 | 14 ;; it under the terms of the GNU General Public License as published by |
94674
ef65fa4dca3b
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92814
diff
changeset
|
15 ;; 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:
92814
diff
changeset
|
16 ;; (at your option) any later version. |
4850 | 17 |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; 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:
92814
diff
changeset
|
24 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
4850 | 25 |
26 ;; LCD Archive Entry | |
24612
8f10db1e779a
(sc-attrib-selection-list): Fix custom type
Dave Love <fx@gnu.org>
parents:
24426
diff
changeset
|
27 ;; supercite|Barry A. Warsaw|supercite-help@python.org |
4850 | 28 ;; |Mail and news reply citation package |
29 ;; |1993/09/22 18:58:46|3.1| | |
30 | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
28437
diff
changeset
|
31 ;;; Commentary: |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
28437
diff
changeset
|
32 |
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
28437
diff
changeset
|
33 ;;; Code: |
4850 | 34 |
35 | |
36 (require 'regi) | |
37 | |
38 ;; start user configuration variables | |
39 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv | |
40 | |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
41 (defgroup supercite nil |
64037
72c3c77d111e
(supercite, supercite-frames, supercite-attr, supercite-cite, supercite-hooks):
Juanma Barranquero <lekktu@gmail.com>
parents:
63945
diff
changeset
|
42 "Supercite package." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
43 :prefix "sc-" |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
44 :group 'mail |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
45 :group 'news) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
46 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
47 (defgroup supercite-frames nil |
64037
72c3c77d111e
(supercite, supercite-frames, supercite-attr, supercite-cite, supercite-hooks):
Juanma Barranquero <lekktu@gmail.com>
parents:
63945
diff
changeset
|
48 "Supercite (regi) frames." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
49 :prefix "sc-" |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
50 :group 'supercite) |
4850 | 51 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
52 (defgroup supercite-attr nil |
64037
72c3c77d111e
(supercite, supercite-frames, supercite-attr, supercite-cite, supercite-hooks):
Juanma Barranquero <lekktu@gmail.com>
parents:
63945
diff
changeset
|
53 "Supercite attributions." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
54 :prefix "sc-" |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
55 :group 'supercite) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
56 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
57 (defgroup supercite-cite nil |
64037
72c3c77d111e
(supercite, supercite-frames, supercite-attr, supercite-cite, supercite-hooks):
Juanma Barranquero <lekktu@gmail.com>
parents:
63945
diff
changeset
|
58 "Supercite citings." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
59 :prefix "sc-" |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
60 :group 'supercite) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
61 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
62 (defgroup supercite-hooks nil |
64037
72c3c77d111e
(supercite, supercite-frames, supercite-attr, supercite-cite, supercite-hooks):
Juanma Barranquero <lekktu@gmail.com>
parents:
63945
diff
changeset
|
63 "Hooking into supercite." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
64 :prefix "sc-" |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
65 :group 'supercite) |
4850 | 66 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
67 (defcustom sc-auto-fill-region-p t |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
68 "If non-nil, automatically fill each paragraph after it has been cited." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
69 :type 'boolean |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
70 :group 'supercite) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
71 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
72 (defcustom sc-blank-lines-after-headers 1 |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
73 "Number of blank lines to leave after mail headers have been nuked. |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
74 Set to nil, to use whatever blank lines happen to occur naturally." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
75 :type '(choice (const :tag "leave" nil) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
76 integer) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
77 :group 'supercite) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
78 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
79 (defcustom sc-citation-leader " " |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
80 "String comprising first part of a citation." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
81 :type 'string |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
82 :group 'supercite-cite) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
83 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
84 (defcustom sc-citation-delimiter ">" |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
85 "String comprising third part of a citation. |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
86 This string is used in both nested and non-nested citations." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
87 :type 'string |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
88 :group 'supercite-cite) |
4850 | 89 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
90 (defcustom sc-citation-separator " " |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
91 "String comprising fourth and last part of a citation." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
92 :type 'string |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
93 :group 'supercite-cite) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
94 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
95 (defcustom sc-citation-leader-regexp "[ \t]*" |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
96 "Regexp describing citation leader for a cited line. |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
97 This should NOT have a leading `^' character." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
98 :type 'regexp |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
99 :group 'supercite-cite) |
4850 | 100 |
101 ;; Nemacs and Mule users note: please see the texinfo manual for | |
102 ;; suggestions on setting these variables. | |
28437 | 103 (defcustom sc-citation-root-regexp "[-._[:alnum:]]*" |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
104 "Regexp describing variable root part of a citation for a cited line. |
4850 | 105 This should NOT have a leading `^' character. See also |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
106 `sc-citation-nonnested-root-regexp'." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
107 :type 'regexp |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
108 :group 'supercite-cite) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
109 |
28437 | 110 (defcustom sc-citation-nonnested-root-regexp "[-._[:alnum:]]+" |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
111 "Regexp describing the variable root part of a nested citation. |
4850 | 112 This should NOT have a leading `^' character. This variable is |
14007
c6476f4bb121
(sc-citation-nonnested-root-regexp,
Karl Heuer <kwzh@gnu.org>
parents:
13813
diff
changeset
|
113 related to `sc-citation-root-regexp' but whereas that variable |
4850 | 114 describes both nested and non-nested citation roots, this variable |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
115 describes only nested citation roots." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
116 :type 'regexp |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
117 :group 'supercite-cite) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
118 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
119 (defcustom sc-citation-delimiter-regexp "[>]+" |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
120 "Regexp describing citation delimiter for a cited line. |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
121 This should NOT have a leading `^' character." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
122 :type 'regexp |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
123 :group 'supercite-cite) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
124 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
125 (defcustom sc-citation-separator-regexp "[ \t]*" |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
126 "Regexp describing citation separator for a cited line. |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
127 This should NOT have a leading `^' character." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
128 :type 'regexp |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
129 :group 'supercite-cite) |
4850 | 130 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
131 (defcustom sc-cite-blank-lines-p nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
132 "If non-nil, put a citation on blank lines." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
133 :type 'boolean |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
134 :group 'supercite-cite) |
4850 | 135 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
136 (defcustom sc-cite-frame-alist '() |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
137 "Alist for frame selection during citing. |
4850 | 138 Each element of this list has the following form: |
139 (INFOKEY ((REGEXP . FRAME) | |
140 (REGEXP . FRAME) | |
141 (...))) | |
142 | |
143 Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular | |
58952
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
144 expression to match against the INFOKEY's value. FRAME is |
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
145 a citation frame, or a symbol that represents the name of |
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
146 a variable whose value is a citation frame." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
147 :type '(repeat (list symbol (repeat (cons regexp |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
148 (choice (repeat (repeat sexp)) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
149 symbol))))) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
150 :group 'supercite-frames) |
62315
c37dfc8054d6
(sc-cite-frame-alist, sc-uncite-frame-alist)
Richard M. Stallman <rms@gnu.org>
parents:
61282
diff
changeset
|
151 (put 'sc-cite-frame-alist 'risky-local-variable t) |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
152 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
153 (defcustom sc-uncite-frame-alist '() |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
154 "Alist for frame selection during unciting. |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
155 See the variable `sc-cite-frame-alist' for details." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
156 :type '(repeat (list symbol (repeat (cons regexp |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
157 (choice (repeat (repeat sexp)) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
158 symbol))))) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
159 :group 'supercite-frames) |
62315
c37dfc8054d6
(sc-cite-frame-alist, sc-uncite-frame-alist)
Richard M. Stallman <rms@gnu.org>
parents:
61282
diff
changeset
|
160 (put 'sc-uncite-frame-alist 'risky-local-variable t) |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
161 |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
162 (defcustom sc-recite-frame-alist '() |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
163 "Alist for frame selection during reciting. |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
164 See the variable `sc-cite-frame-alist' for details." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
165 :type '(repeat (list symbol (repeat (cons regexp |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
166 (choice (repeat (repeat sexp)) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
167 symbol))))) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
168 :group 'supercite-frames) |
62315
c37dfc8054d6
(sc-cite-frame-alist, sc-uncite-frame-alist)
Richard M. Stallman <rms@gnu.org>
parents:
61282
diff
changeset
|
169 (put 'sc-recite-frame-alist 'risky-local-variable t) |
4850 | 170 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
171 (defcustom sc-default-cite-frame |
4850 | 172 '(;; initialize fill state and temporary variables when entering |
173 ;; frame. this makes things run much faster | |
174 (begin (progn | |
175 (sc-fill-if-different) | |
176 (setq sc-tmp-nested-regexp (sc-cite-regexp "") | |
177 sc-tmp-nonnested-regexp (sc-cite-regexp) | |
178 sc-tmp-dumb-regexp | |
179 (concat "\\(" | |
180 (sc-cite-regexp "") | |
181 "\\)" | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
182 (sc-cite-regexp |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
183 sc-citation-nonnested-root-regexp))))) |
4850 | 184 ;; blank lines mean paragraph separators, so fill the last cited |
185 ;; paragraph, unless sc-cite-blank-lines-p is non-nil, in which | |
186 ;; case we treat blank lines just like any other line. | |
187 ("^[ \t]*$" (if sc-cite-blank-lines-p | |
188 (sc-cite-line) | |
189 (sc-fill-if-different ""))) | |
190 ;; do nothing if looking at a reference tag. make sure that the | |
191 ;; tag string isn't the empty string since this will match every | |
192 ;; line. it cannot be nil. | |
193 (sc-reference-tag-string (if (string= sc-reference-tag-string "") | |
194 (list 'continue) | |
195 nil)) | |
196 ;; this regexp catches nested citations in which the author cited | |
197 ;; a non-nested citation with a dumb citer. | |
198 (sc-tmp-dumb-regexp (sc-cite-coerce-dumb-citer)) | |
199 ;; if we are looking at a nested citation then add a citation level | |
200 (sc-tmp-nested-regexp (sc-add-citation-level)) | |
201 ;; if we're looking at a non-nested citation, coerce it to our style | |
202 (sc-tmp-nonnested-regexp (sc-cite-coerce-cited-line)) | |
203 ;; we must be looking at an uncited line. if we are in nested | |
204 ;; citations, just add a citation level | |
205 (sc-nested-citation-p (sc-add-citation-level)) | |
206 ;; we're looking at an uncited line and we are in non-nested | |
207 ;; citations, so cite it with a non-nested citation | |
208 (t (sc-cite-line)) | |
209 ;; be sure when we're done that we fill the last cited paragraph. | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
210 (end (sc-fill-if-different ""))) |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
211 "Default REGI frame for citing a region." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
212 :type '(repeat (repeat sexp)) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
213 :group 'supercite-frames) |
62315
c37dfc8054d6
(sc-cite-frame-alist, sc-uncite-frame-alist)
Richard M. Stallman <rms@gnu.org>
parents:
61282
diff
changeset
|
214 (put 'sc-default-cite-frame 'risky-local-variable t) |
4850 | 215 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
216 (defcustom sc-default-uncite-frame |
4850 | 217 '(;; do nothing on a blank line |
218 ("^[ \t]*$" nil) | |
219 ;; if the line is cited, uncite it | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
220 ((sc-cite-regexp) (sc-uncite-line))) |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
221 "Default REGI frame for unciting a region." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
222 :type '(repeat (repeat sexp)) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
223 :group 'supercite-frames) |
62315
c37dfc8054d6
(sc-cite-frame-alist, sc-uncite-frame-alist)
Richard M. Stallman <rms@gnu.org>
parents:
61282
diff
changeset
|
224 (put 'sc-default-uncite-frame 'risky-local-variable t) |
4850 | 225 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
226 (defcustom sc-default-recite-frame |
4850 | 227 '(;; initialize fill state when entering frame |
228 (begin (sc-fill-if-different)) | |
229 ;; do nothing on a blank line | |
230 ("^[ \t]*$" nil) | |
231 ;; if we're looking at a cited line, recite it | |
232 ((sc-cite-regexp) (sc-recite-line (sc-cite-regexp))) | |
233 ;; otherwise, the line is uncited, so just cite it | |
234 (t (sc-cite-line)) | |
235 ;; be sure when we're done that we fill the last cited paragraph. | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
236 (end (sc-fill-if-different ""))) |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
237 "Default REGI frame for reciting a region." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
238 :type '(repeat (repeat sexp)) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
239 :group 'supercite-frames) |
62315
c37dfc8054d6
(sc-cite-frame-alist, sc-uncite-frame-alist)
Richard M. Stallman <rms@gnu.org>
parents:
61282
diff
changeset
|
240 (put 'sc-default-recite-frame 'risky-local-variable t) |
4850 | 241 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
242 (defcustom sc-cite-region-limit t |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
243 "This variable controls automatic citation of yanked text. |
60924
fb2b49a3a4e0
* mail/supercite.el: Replace `legal' with `valid'.
Werner LEMBERG <wl@gnu.org>
parents:
60916
diff
changeset
|
244 Valid values are: |
4850 | 245 |
246 non-nil -- cite the entire region, regardless of its size | |
247 nil -- do not cite the region at all | |
248 <integer> -- a number indicating the threshold for citation. When | |
249 the number of lines in the region is greater than this | |
250 value, a warning message will be printed and the region | |
251 will not be cited. Lines in region are counted with | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
43791
diff
changeset
|
252 `count-lines'. |
4850 | 253 |
254 The gathering of attribution information is not affected by the value | |
255 of this variable. The number of lines in the region is calculated | |
256 *after* all mail headers are removed. This variable is only consulted | |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
257 during the initial citing via `sc-cite-original'." |
22592
17e17690ab4e
(sc-cite-region-limit): Use `other' widget
Andreas Schwab <schwab@suse.de>
parents:
21861
diff
changeset
|
258 :type '(choice (const :tag "do not cite" nil) |
17e17690ab4e
(sc-cite-region-limit): Use `other' widget
Andreas Schwab <schwab@suse.de>
parents:
21861
diff
changeset
|
259 (integer :tag "citation threshold") |
17e17690ab4e
(sc-cite-region-limit): Use `other' widget
Andreas Schwab <schwab@suse.de>
parents:
21861
diff
changeset
|
260 (other :tag "always cite" t)) |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
261 :group 'supercite-cite) |
4850 | 262 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
263 (defcustom sc-confirm-always-p t |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
264 "If non-nil, always confirm attribution string before citing text body." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
265 :type 'boolean |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
266 :group 'supercite-attr) |
4850 | 267 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
268 (defcustom sc-default-attribution "Anon" |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
269 "String used when author's attribution cannot be determined." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
270 :type 'string |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
271 :group 'supercite-attr) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
272 (defcustom sc-default-author-name "Anonymous" |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
273 "String used when author's name cannot be determined." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
274 :type 'string |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
275 :group 'supercite-attr) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
276 (defcustom sc-downcase-p nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
277 "Non-nil means downcase the attribution and citation strings." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
278 :type 'boolean |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
279 :group 'supercite-attr |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
280 :group 'supercite-cite) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
281 (defcustom sc-electric-circular-p t |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
282 "If non-nil, treat electric references as circular." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
283 :type 'boolean |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
284 :group 'supercite-attr) |
4850 | 285 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
286 (defcustom sc-electric-mode-hook nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
287 "Hook for `sc-electric-mode' electric references mode." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
288 :type 'hook |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
289 :group 'supercite-hooks) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
290 (defcustom sc-electric-references-p nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
291 "Use electric references if non-nil." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
292 :type 'boolean |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
293 :group 'supercite) |
4850 | 294 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
295 (defcustom sc-fixup-whitespace-p nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
296 "If non-nil, delete all leading white space before citing." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
297 :type 'boolean |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
298 :group 'supercite) |
4850 | 299 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
300 (defcustom sc-load-hook nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
301 "Hook which gets run once after Supercite loads." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
302 :type 'hook |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
303 :group 'supercite-hooks) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
304 (defcustom sc-pre-hook nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
305 "Hook which gets run before each invocation of `sc-cite-original'." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
306 :type 'hook |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
307 :group 'supercite-hooks) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
308 (defcustom sc-post-hook nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
309 "Hook which gets run after each invocation of `sc-cite-original'." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
310 :type 'hook |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
311 :group 'supercite-hooks) |
4850 | 312 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
313 (defcustom sc-mail-warn-if-non-rfc822-p t |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
314 "Warn if mail headers don't conform to RFC822." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
315 :type 'boolean |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
316 :group 'supercite-attr) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
317 (defcustom sc-mumble "" |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
318 "Value returned by `sc-mail-field' if field isn't in mail headers." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
319 :type 'string |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
320 :group 'supercite-attr) |
4850 | 321 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
322 (defcustom sc-name-filter-alist |
4850 | 323 '(("^\\(Mr\\|Mrs\\|Ms\\|Dr\\)[.]?$" . 0) |
324 ("^\\(Jr\\|Sr\\)[.]?$" . last) | |
325 ("^ASTS$" . 0) | |
326 ("^[I]+$" . last)) | |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
327 "Name list components which are filtered out as noise. |
4850 | 328 This variable contains an association list where each element is of |
329 the form: (REGEXP . POSITION). | |
330 | |
331 REGEXP is a regular expression which matches the name list component. | |
332 Match is performed using `string-match'. POSITION is the position in | |
333 the name list which can match the regular expression, starting at zero | |
334 for the first element. Use `last' to match the last element in the | |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
335 list and `any' to match all elements." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
336 :type '(repeat (cons regexp (choice (const last) (const any) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
337 (integer :tag "position")))) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
338 :group 'supercite-attr) |
4850 | 339 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
340 (defcustom sc-nested-citation-p nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
341 "Controls whether to use nested or non-nested citation style. |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
342 Non-nil uses nested citations, nil uses non-nested citations." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
343 :type 'boolean |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
344 :group 'supercite) |
4850 | 345 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
346 (defcustom sc-nuke-mail-headers 'all |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
347 "Controls mail header nuking. |
60924
fb2b49a3a4e0
* mail/supercite.el: Replace `legal' with `valid'.
Werner LEMBERG <wl@gnu.org>
parents:
60916
diff
changeset
|
348 Used in conjunction with `sc-nuke-mail-header-list'. Valid values are: |
4850 | 349 |
350 `all' -- nuke all mail headers | |
351 `none' -- don't nuke any mail headers | |
352 `specified' -- nuke headers specified in `sc-nuke-mail-header-list' | |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
353 `keep' -- keep headers specified in `sc-nuke-mail-header-list'" |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
354 :type '(choice (const all) (const none) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
355 (const specified) (const keep)) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
356 :group 'supercite) |
4850 | 357 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
358 (defcustom sc-nuke-mail-header-list nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
359 "List of mail header regexps to remove or keep in body of reply. |
4850 | 360 This list contains regular expressions describing the mail headers to |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
361 keep or nuke, depending on the value of `sc-nuke-mail-headers'." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
362 :type '(repeat regexp) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
363 :group 'supercite) |
4850 | 364 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
365 (defcustom sc-preferred-attribution-list |
4850 | 366 '("sc-lastchoice" "x-attribution" "firstname" "initials" "lastname") |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
367 "Specifies what to use as the attribution string. |
4850 | 368 Supercite creates a list of possible attributions when it scans the |
369 mail headers from the original message. Each attribution choice is | |
370 associated with a key in an attribution alist. Supercite tries to | |
371 pick a \"preferred\" attribution by matching the attribution alist | |
372 keys against the elements in `sc-preferred-attribution-list' in order. | |
373 The first non-empty string value found is used as the preferred | |
374 attribution. | |
375 | |
376 Note that Supercite now honors the X-Attribution: mail field. If | |
377 present in the original message, the value of this field should always | |
378 be used to select the most preferred attribution since it reflects how | |
379 the original author would like to be distinguished. It should be | |
380 considered bad taste to put any attribution preference key before | |
381 \"x-attribution\" in this list, except perhaps for \"sc-lastchoice\" | |
7639 | 382 \(see below). |
4850 | 383 |
384 Supercite remembers the last attribution used when reciting an already | |
385 cited paragraph. This attribution will always be saved with the | |
386 \"sc-lastchoice\" key, which can be used in this list. Note that the | |
387 last choice is always reset after every call of `sc-cite-original'. | |
388 | |
389 Barring error conditions, the following preferences are always present | |
390 in the attribution alist: | |
391 | |
392 \"emailname\" -- email terminus name | |
393 \"initials\" -- initials of author | |
394 \"firstname\" -- first name of author | |
395 \"lastname\" -- last name of author | |
396 \"middlename-1\" -- first middle name of author | |
397 \"middlename-2\" -- second middle name of author | |
398 ... | |
399 | |
400 Middle name indexes can be any positive integer greater than 0, | |
401 although it is unlikely that many authors will supply more than one | |
402 middle name, if that many. The string of all middle names is | |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
403 associated with the key \"middlenames\"." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
404 :type '(repeat string) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
405 :group 'supercite-attr) |
4850 | 406 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
407 (defcustom sc-attrib-selection-list nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
408 "An alist for selecting preferred attribution based on mail headers. |
4850 | 409 Each element of this list has the following form: |
410 | |
411 (INFOKEY ((REGEXP . ATTRIBUTION) | |
412 (REGEXP . ATTRIBUTION) | |
413 (...))) | |
414 | |
415 Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular | |
75514
77b456d647bc
(sc-attrib-selection-list): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
75347
diff
changeset
|
416 expression to match against the INFOKEY's value. ATTRIBUTION can be a |
77b456d647bc
(sc-attrib-selection-list): Fix typo in docstring.
Juanma Barranquero <lekktu@gmail.com>
parents:
75347
diff
changeset
|
417 string or a list. If it's a string, then it is the attribution that is |
4850 | 418 selected by `sc-select-attribution'. If it is a list, it is `eval'd |
419 and the return value must be a string, which is used as the selected | |
420 attribution. Note that the variable `sc-preferred-attribution-list' | |
421 must contain an element of the string \"sc-consult\" for this variable | |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
422 to be consulted during attribution selection." |
24613
83a507b08fe1
(sc-scan-info-alist): Revert last change.
Dave Love <fx@gnu.org>
parents:
24612
diff
changeset
|
423 :type '(repeat (list string |
83a507b08fe1
(sc-scan-info-alist): Revert last change.
Dave Love <fx@gnu.org>
parents:
24612
diff
changeset
|
424 (repeat (cons regexp |
83a507b08fe1
(sc-scan-info-alist): Revert last change.
Dave Love <fx@gnu.org>
parents:
24612
diff
changeset
|
425 (choice (sexp :tag "List to eval") |
83a507b08fe1
(sc-scan-info-alist): Revert last change.
Dave Love <fx@gnu.org>
parents:
24612
diff
changeset
|
426 string))))) |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
427 :group 'supercite-attr) |
62315
c37dfc8054d6
(sc-cite-frame-alist, sc-uncite-frame-alist)
Richard M. Stallman <rms@gnu.org>
parents:
61282
diff
changeset
|
428 (put 'sc-attrib-selection-list 'risky-local-variable t) |
4850 | 429 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
430 (defcustom sc-attribs-preselect-hook nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
431 "Hook to run before selecting an attribution." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
432 :type 'hook |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
433 :group 'supercite-attr |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
434 :group 'supercite-hooks) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
435 (defcustom sc-attribs-postselect-hook nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
436 "Hook to run after selecting an attribution, but before confirmation." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
437 :type 'hook |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
438 :group 'supercite-attr |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
439 :group 'supercite-hooks) |
4850 | 440 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
441 (defcustom sc-pre-cite-hook nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
442 "Hook to run before citing a region of text." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
443 :type 'hook |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
444 :group 'supercite-cite |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
445 :group 'supercite-hooks) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
446 (defcustom sc-pre-uncite-hook nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
447 "Hook to run before unciting a region of text." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
448 :type 'hook |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
449 :group 'supercite-cite |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
450 :group 'supercite-hooks) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
451 (defcustom sc-pre-recite-hook nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
452 "Hook to run before reciting a region of text." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
453 :type 'hook |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
454 :group 'supercite-cite |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
455 :group 'supercite-hooks) |
4850 | 456 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
457 (defcustom sc-preferred-header-style 4 |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
458 "Index into `sc-rewrite-header-list' specifying preferred header style. |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
459 Index zero accesses the first function in the list." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
460 :type 'integer |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
461 :group 'supercite) |
4850 | 462 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
463 (defcustom sc-reference-tag-string ">>>>> " |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
464 "String used at the beginning of built-in reference headers." |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
465 :type 'string |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
466 :group 'supercite) |
4850 | 467 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
468 (defcustom sc-rewrite-header-list |
4850 | 469 '((sc-no-header) |
470 (sc-header-on-said) | |
471 (sc-header-inarticle-writes) | |
472 (sc-header-regarding-adds) | |
473 (sc-header-attributed-writes) | |
474 (sc-header-author-writes) | |
475 (sc-header-verbose) | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
476 (sc-no-blank-line-or-header)) |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
477 "List of reference header rewrite functions. |
4850 | 478 The variable `sc-preferred-header-style' controls which function in |
479 this list is chosen for automatic reference header insertions. | |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
480 Electric reference mode will cycle through this list of functions." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
481 :type '(repeat sexp) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
482 :group 'supercite) |
62315
c37dfc8054d6
(sc-cite-frame-alist, sc-uncite-frame-alist)
Richard M. Stallman <rms@gnu.org>
parents:
61282
diff
changeset
|
483 (put 'sc-rewrite-header-list 'risky-local-variable t) |
4850 | 484 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
485 (defcustom sc-titlecue-regexp "\\s +-+\\s +" |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
486 "Regular expression describing the separator between names and titles. |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
487 Set to nil to treat entire field as a name." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
488 :type '(choice (const :tag "entire field as name" nil) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
489 regexp) |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
490 :group 'supercite-attr) |
4850 | 491 |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
492 (defcustom sc-use-only-preference-p nil |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
493 "Controls what happens when the preferred attribution cannot be found. |
4850 | 494 If non-nil, then `sc-default-attribution' will be used. If nil, then |
495 some secondary scheme will be employed to find a suitable attribution | |
17489
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
496 string." |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
497 :type 'boolean |
cb41a5b41836
Add defgroup's; use defcustom for user vars.
Richard M. Stallman <rms@gnu.org>
parents:
14169
diff
changeset
|
498 :group 'supercite-attr) |
4850 | 499 |
92543
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
500 (defcustom sc-mode-map-prefix "\C-c\C-p" |
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
501 "Key binding to install Supercite keymap." |
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
502 :type 'string |
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
503 :group 'supercite) |
117d4bd1128b
Remove leading `*' from defcustom doc-strings.
Glenn Morris <rgm@gnu.org>
parents:
92263
diff
changeset
|
504 |
4850 | 505 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
506 ;; end user configuration variables | |
507 | |
86532
c44e4015b517
Delete meaningless header keys.
Glenn Morris <rgm@gnu.org>
parents:
84957
diff
changeset
|
508 (define-obsolete-variable-alias 'sc-version 'emacs-version "23.1") |
4850 | 509 |
510 (defvar sc-mail-info nil | |
511 "Alist of mail header information gleaned from reply buffer.") | |
512 (defvar sc-attributions nil | |
513 "Alist of attributions for use when citing.") | |
514 | |
515 (defvar sc-tmp-nested-regexp nil | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
516 "Temporary regexp describing nested citations.") |
4850 | 517 (defvar sc-tmp-nonnested-regexp nil |
518 "Temporary regexp describing non-nested citations.") | |
519 (defvar sc-tmp-dumb-regexp nil | |
520 "Temp regexp describing non-nested citation cited with a nesting citer.") | |
521 | |
522 (make-variable-buffer-local 'sc-mail-info) | |
523 (make-variable-buffer-local 'sc-attributions) | |
524 | |
525 | |
526 ;; ====================================================================== | |
527 ;; supercite keymaps | |
528 | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
529 (defvar sc-T-keymap |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
530 (let ((map (make-sparse-keymap))) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
531 (define-key map "a" 'sc-S-preferred-attribution-list) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
532 (define-key map "b" 'sc-T-mail-nuke-blank-lines) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
533 (define-key map "c" 'sc-T-confirm-always) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
534 (define-key map "d" 'sc-T-downcase) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
535 (define-key map "e" 'sc-T-electric-references) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
536 (define-key map "f" 'sc-T-auto-fill-region) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
537 (define-key map "h" 'sc-T-describe) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
538 (define-key map "l" 'sc-S-cite-region-limit) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
539 (define-key map "n" 'sc-S-mail-nuke-mail-headers) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
540 (define-key map "N" 'sc-S-mail-header-nuke-list) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
541 (define-key map "o" 'sc-T-electric-circular) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
542 (define-key map "p" 'sc-S-preferred-header-style) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
543 (define-key map "s" 'sc-T-nested-citation) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
544 (define-key map "u" 'sc-T-use-only-preferences) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
545 (define-key map "w" 'sc-T-fixup-whitespace) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
546 (define-key map "?" 'sc-T-describe) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
547 map) |
4850 | 548 "Keymap for sub-keymap of setting and toggling functions.") |
549 | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
550 (defvar sc-mode-map |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
551 (let ((map (make-sparse-keymap))) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
552 (define-key map "c" 'sc-cite-region) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
553 (define-key map "f" 'sc-mail-field-query) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
554 (define-key map "g" 'sc-mail-process-headers) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
555 (define-key map "h" 'sc-describe) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
556 (define-key map "i" 'sc-insert-citation) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
557 (define-key map "o" 'sc-open-line) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
558 (define-key map "r" 'sc-recite-region) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
559 (define-key map "\C-p" 'sc-raw-mode-toggle) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
560 (define-key map "u" 'sc-uncite-region) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
561 (define-key map "v" 'sc-version) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
562 (define-key map "w" 'sc-insert-reference) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
563 (define-key map "\C-t" sc-T-keymap) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
564 (define-key map "\C-b" 'sc-submit-bug-report) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
565 (define-key map "?" 'sc-describe) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
566 map) |
4850 | 567 "Keymap for Supercite quasi-mode.") |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
43791
diff
changeset
|
568 |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
569 (defvar sc-electric-mode-map |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
570 (let ((map (make-sparse-keymap))) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
571 (define-key map "p" 'sc-eref-prev) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
572 (define-key map "n" 'sc-eref-next) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
573 (define-key map "s" 'sc-eref-setn) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
574 (define-key map "j" 'sc-eref-jump) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
575 (define-key map "x" 'sc-eref-abort) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
576 (define-key map "q" 'sc-eref-abort) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
577 (define-key map "\r" 'sc-eref-exit) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
578 (define-key map "\n" 'sc-eref-exit) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
579 (define-key map "g" 'sc-eref-goto) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
580 (define-key map "?" 'describe-mode) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
581 (define-key map "\C-h" 'describe-mode) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
582 (define-key map [f1] 'describe-mode) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
583 (define-key map [help] 'describe-mode) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
584 map) |
4850 | 585 "Keymap for `sc-electric-mode' electric references mode.") |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
586 |
4850 | 587 |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
588 (defvar sc-minibuffer-local-completion-map |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
589 (let ((map (copy-keymap minibuffer-local-completion-map))) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
590 (define-key map "\C-t" 'sc-toggle-fn) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
591 (define-key map " " 'self-insert-command) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
592 map) |
4850 | 593 "Keymap for minibuffer confirmation of attribution strings.") |
594 | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
595 (defvar sc-minibuffer-local-map |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
596 (let ((map (copy-keymap minibuffer-local-map))) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
597 (define-key map "\C-t" 'sc-toggle-fn) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
598 map) |
4850 | 599 "Keymap for minibuffer confirmation of attribution strings.") |
600 | |
601 | |
602 ;; ====================================================================== | |
603 ;; utility functions | |
604 | |
605 (defun sc-ask (alist) | |
606 "Ask a question in the minibuffer requiring a single character answer. | |
607 This function is kind of an extension of `y-or-n-p' where a single | |
608 letter is used to answer a question. Question is formed from ALIST | |
609 which has members of the form: (WORD . LETTER). WORD is the long | |
610 word form, while LETTER is the letter for selecting that answer. The | |
611 selected letter is returned, or nil if the question was not answered. | |
612 Note that WORD is a string and LETTER is a character. All LETTERs in | |
613 the list should be unique." | |
614 (let* ((prompt (concat | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
615 (mapconcat (lambda (elt) (car elt)) alist ", ") |
4850 | 616 "? (" |
617 (mapconcat | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
618 (lambda (elt) (char-to-string (cdr elt))) alist "/") |
4850 | 619 ") ")) |
620 (p prompt) | |
621 (event | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
622 (if (fboundp 'allocate-event) |
4850 | 623 (allocate-event) |
624 nil))) | |
625 (while (stringp p) | |
626 (if (let ((cursor-in-echo-area t) | |
627 (inhibit-quit t)) | |
628 (message "%s" p) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
629 (setq event (read-event)) |
4850 | 630 (prog1 quit-flag (setq quit-flag nil))) |
631 (progn | |
632 (message "%s%s" p (single-key-description event)) | |
64832
103e161cb74f
(sc-ask, sc-no-blank-line-or-header): Avoid warnings.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
633 (if (fboundp 'deallocate-event) |
103e161cb74f
(sc-ask, sc-no-blank-line-or-header): Avoid warnings.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
634 (deallocate-event event)) |
4850 | 635 (setq quit-flag nil) |
636 (signal 'quit '()))) | |
637 (let ((char | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
638 (if (featurep 'xemacs) |
4850 | 639 (let* ((key (and (key-press-event-p event) (event-key event))) |
640 (char (and key (event-to-character event)))) | |
641 char) | |
642 event)) | |
643 elt) | |
644 (if char (setq char (downcase char))) | |
645 (cond | |
646 ((setq elt (rassq char alist)) | |
647 (message "%s%s" p (car elt)) | |
648 (setq p (cdr elt))) | |
64832
103e161cb74f
(sc-ask, sc-no-blank-line-or-header): Avoid warnings.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
649 ((if (fboundp 'button-release-event-p) |
103e161cb74f
(sc-ask, sc-no-blank-line-or-header): Avoid warnings.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
650 (button-release-event-p event)) ; ignore them |
4850 | 651 nil) |
652 (t | |
653 (message "%s%s" p (single-key-description event)) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
654 (if (featurep 'xemacs) |
4850 | 655 (ding nil 'y-or-n-p) |
656 (ding)) | |
657 (discard-input) | |
658 (if (eq p prompt) | |
659 (setq p (concat "Try again. " prompt))))))) | |
64832
103e161cb74f
(sc-ask, sc-no-blank-line-or-header): Avoid warnings.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
660 (if (fboundp 'deallocate-event) |
103e161cb74f
(sc-ask, sc-no-blank-line-or-header): Avoid warnings.
Richard M. Stallman <rms@gnu.org>
parents:
64754
diff
changeset
|
661 (deallocate-event event)) |
4850 | 662 p)) |
663 | |
664 (defun sc-scan-info-alist (alist) | |
665 "Find a match in the info alist that matches a regexp in ALIST." | |
666 (let ((sc-mumble "") | |
667 rtnvalue) | |
668 (while alist | |
669 (let* ((elem (car alist)) | |
670 (infokey (car elem)) | |
671 (infoval (sc-mail-field infokey)) | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
672 (mlist (cadr elem))) |
4850 | 673 (while mlist |
674 (let* ((ml-elem (car mlist)) | |
675 (regexp (car ml-elem)) | |
676 (thing (cdr ml-elem))) | |
677 (if (string-match regexp infoval) | |
678 ;; we found a match, time to return | |
24613
83a507b08fe1
(sc-scan-info-alist): Revert last change.
Dave Love <fx@gnu.org>
parents:
24612
diff
changeset
|
679 (setq rtnvalue thing |
4850 | 680 mlist nil |
681 alist nil) | |
682 ;; else we didn't find a match | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
683 (setq mlist (cdr mlist))))) ;end of mlist loop |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
684 (setq alist (cdr alist)))) ;end of alist loop |
4850 | 685 rtnvalue)) |
686 | |
687 | |
688 ;; ====================================================================== | |
689 ;; extract mail field information from headers in reply buffer | |
690 | |
691 ;; holder variables for bc happiness | |
692 (defvar sc-mail-headers-start nil | |
693 "Start of header fields.") | |
694 (defvar sc-mail-headers-end nil | |
695 "End of header fields.") | |
696 (defvar sc-mail-field-history nil | |
697 "For minibuffer completion on mail field queries.") | |
698 (defvar sc-mail-field-modification-history nil | |
699 "For minibuffer completion on mail field modifications.") | |
700 (defvar sc-mail-glom-frame | |
701 '((begin (setq sc-mail-headers-start (point))) | |
102154
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
702 ("^From " (sc-mail-check-from) nil nil) |
4850 | 703 ("^x-attribution:[ \t]+.*$" (sc-mail-fetch-field t) nil t) |
704 ("^\\S +:.*$" (sc-mail-fetch-field) nil t) | |
705 ("^$" (list 'abort '(step . 0))) | |
706 ("^[ \t]+" (sc-mail-append-field)) | |
707 (sc-mail-warn-if-non-rfc822-p (sc-mail-error-in-mail-field)) | |
708 (end (setq sc-mail-headers-end (point)))) | |
709 "Regi frame for glomming mail header information.") | |
63056
095901aead41
(sc-mail-glom-frame): Mark as risky.
Richard M. Stallman <rms@gnu.org>
parents:
62924
diff
changeset
|
710 (put 'sc-mail-glom-frame 'risky-local-variable t) |
4850 | 711 |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
712 (defvar curline) ; dynamic bondage |
28437 | 713 |
4850 | 714 ;; regi functions |
102154
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
715 |
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
716 ;; http://lists.gnu.org/archive/html/emacs-devel/2009-02/msg00691.html |
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
717 ;; When rmail replies to a message with full headers visible, the "From " |
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
718 ;; line can be included. |
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
719 (defun sc-mail-check-from () |
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
720 "Deal with a \"From \" line in the header. |
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
721 Such a line should only occur at the very start of the headers." |
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
722 (and sc-mail-warn-if-non-rfc822-p |
102175 | 723 (/= (point) sc-mail-headers-start) |
102154
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
724 (sc-mail-error-in-mail-field))) |
3da2fdefd254
(sc-mail-glom-frame): Handle a "From " line at the start of the headers.
Glenn Morris <rgm@gnu.org>
parents:
100908
diff
changeset
|
725 |
4850 | 726 (defun sc-mail-fetch-field (&optional attribs-p) |
727 "Insert a key and value into `sc-mail-info' alist. | |
728 If optional ATTRIBS-P is non-nil, the key/value pair is placed in | |
729 `sc-attributions' too." | |
730 (if (string-match "^\\(\\S *\\)\\s *:\\s +\\(.*\\)$" curline) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
731 (let* ((key (downcase (match-string-no-properties 1 curline))) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
732 (val (match-string-no-properties 2 curline)) |
4850 | 733 (keyval (cons key val))) |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
734 (push keyval sc-mail-info) |
4850 | 735 (if attribs-p |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
736 (push keyval sc-attributions)))) |
4850 | 737 nil) |
738 | |
739 (defun sc-mail-append-field () | |
740 "Append a continuation line onto the last fetched mail field's info." | |
741 (let ((keyval (car sc-mail-info))) | |
742 (if (and keyval (string-match "^\\s *\\(.*\\)$" curline)) | |
11556
a83ee7a1e0fd
Made sc-string-text to strip of text properties of buffer text, so string
Simon Marshall <simon@gnu.org>
parents:
9845
diff
changeset
|
743 (setcdr keyval (concat (cdr keyval) " " |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
744 (match-string-no-properties 1 curline))))) |
4850 | 745 nil) |
746 | |
747 (defun sc-mail-error-in-mail-field () | |
748 "Issue warning that mail headers don't conform to RFC 822." | |
749 (let* ((len (min (length curline) 10)) | |
750 (ellipsis (if (< len (length curline)) "..." "")) | |
751 (msg "Mail header \"%s%s\" doesn't conform to RFC 822. skipping...")) | |
752 (message msg (substring curline 0 len) ellipsis)) | |
753 (beep) | |
754 (sit-for 2) | |
755 nil) | |
756 | |
757 ;; mail header nuking | |
758 (defvar sc-mail-last-header-nuked-p nil | |
759 "True if the last header was nuked.") | |
760 | |
761 (defun sc-mail-nuke-line () | |
762 "Nuke the current mail header line." | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
763 (delete-region (line-beginning-position) (line-beginning-position 2)) |
4850 | 764 '((step . -1))) |
765 | |
766 (defun sc-mail-nuke-header-line () | |
767 "Delete current-line and set up for possible continuation." | |
768 (setq sc-mail-last-header-nuked-p t) | |
769 (sc-mail-nuke-line)) | |
770 | |
771 (defun sc-mail-nuke-continuation-line () | |
772 "Delete a continuation line if the last header line was deleted." | |
773 (if sc-mail-last-header-nuked-p | |
774 (sc-mail-nuke-line))) | |
775 | |
776 (defun sc-mail-cleanup-blank-lines () | |
777 "Leave some blank lines after original mail headers are nuked. | |
778 The number of lines left is specified by `sc-blank-lines-after-headers'." | |
779 (if sc-blank-lines-after-headers | |
780 (save-restriction | |
781 (widen) | |
782 (skip-chars-backward " \t\n") | |
783 (forward-line 1) | |
784 (delete-blank-lines) | |
785 (beginning-of-line) | |
786 (if (looking-at "[ \t]*$") | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
787 (delete-region (line-beginning-position) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
788 (line-beginning-position 2))) |
4850 | 789 (insert-char ?\n sc-blank-lines-after-headers))) |
790 nil) | |
791 | |
792 (defun sc-mail-build-nuke-frame () | |
793 "Build the regiframe for nuking mail headers." | |
794 (let (every-func entry-func nonentry-func) | |
795 (cond | |
796 ((eq sc-nuke-mail-headers 'all) | |
797 (setq every-func '(progn (forward-line -1) (sc-mail-nuke-line)))) | |
798 ((eq sc-nuke-mail-headers 'specified) | |
799 (setq entry-func '(sc-mail-nuke-header-line) | |
800 nonentry-func '(setq sc-mail-last-header-nuked-p nil))) | |
801 ((eq sc-nuke-mail-headers 'keep) | |
802 (setq entry-func '(setq sc-mail-last-header-nuked-p nil) | |
803 nonentry-func '(sc-mail-nuke-header-line))) | |
804 ;; we never get far enough to interpret a frame if s-n-m-h == 'none | |
805 ((eq sc-nuke-mail-headers 'none)) | |
60916
480134f8cd16
* mail/supercite.el: Replace `illegal' with `invalid'.
Werner LEMBERG <wl@gnu.org>
parents:
58952
diff
changeset
|
806 (t (error "Invalid value for sc-nuke-mail-headers: %s" |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
807 sc-nuke-mail-headers))) ; end-cond |
4850 | 808 (append |
809 (and entry-func | |
810 (regi-mapcar sc-nuke-mail-header-list entry-func nil t)) | |
811 (and nonentry-func (list (list "^\\S +:.*$" nonentry-func))) | |
812 (and (not every-func) | |
813 '(("^[ \t]+" (sc-mail-nuke-continuation-line)))) | |
814 '((begin (setq sc-mail-last-header-zapped-p nil))) | |
815 '((end (sc-mail-cleanup-blank-lines))) | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
816 (and every-func (list (list 'every every-func)))))) |
4850 | 817 |
818 ;; mail processing and zapping. this is the top level entry defun to | |
819 ;; all header processing. | |
820 (defun sc-mail-process-headers (start end) | |
821 "Process original mail message's mail headers. | |
822 After processing, mail headers may be nuked. Header information is | |
823 stored in `sc-mail-info', and any old information is lost unless an | |
824 error occurs." | |
825 (interactive "r") | |
826 (let ((info (copy-alist sc-mail-info)) | |
827 (attribs (copy-alist sc-attributions))) | |
828 (setq sc-mail-info nil | |
829 sc-attributions nil) | |
830 (regi-interpret sc-mail-glom-frame start end) | |
831 (if (null sc-mail-info) | |
832 (progn | |
833 (message "No mail headers found! Restoring old information.") | |
834 (setq sc-mail-info info | |
835 sc-attributions attribs)) | |
836 (regi-interpret (sc-mail-build-nuke-frame) | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
837 sc-mail-headers-start sc-mail-headers-end)))) |
4850 | 838 |
839 | |
840 ;; let the user change mail field information | |
841 (defun sc-mail-field (field) | |
842 "Return the mail header field value associated with FIELD. | |
843 If there was no mail header with FIELD as its key, return the value of | |
844 `sc-mumble'. FIELD is case insensitive." | |
61044
17207b620cf3
(sc-mail-field): Use assoc-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60924
diff
changeset
|
845 (or (cdr (assoc-string field sc-mail-info 'case-fold)) sc-mumble)) |
4850 | 846 |
847 (defun sc-mail-field-query (arg) | |
848 "View the value of a mail field. | |
849 With `\\[universal-argument]', prompts for action on mail field. | |
850 Action can be one of: View, Modify, Add, or Delete." | |
851 (interactive "P") | |
852 (let* ((alist '(("view" . ?v) ("modify" . ?m) ("add" . ?a) ("delete" . ?d))) | |
853 (action (if (not arg) ?v (sc-ask alist))) | |
854 key) | |
855 (if (not action) | |
856 () | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
857 (setq key (completing-read |
4850 | 858 (concat (car (rassq action alist)) |
859 " information key: ") | |
860 sc-mail-info nil | |
861 (if (eq action ?a) nil 'noexit) | |
862 nil 'sc-mail-field-history)) | |
863 (cond | |
864 ((eq action ?v) | |
865 (message "%s: %s" key (cdr (assoc key sc-mail-info)))) | |
866 ((eq action ?d) | |
867 (setq sc-mail-info (delq (assoc key sc-mail-info) sc-mail-info))) | |
868 ((eq action ?m) | |
869 (let ((keyval (assoc key sc-mail-info))) | |
870 ;; first put initial value onto list if not already there | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
871 (if (not (member (cdr keyval) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
872 sc-mail-field-modification-history)) |
4850 | 873 (setq sc-mail-field-modification-history |
874 (cons (cdr keyval) sc-mail-field-modification-history))) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
875 (setcdr keyval (read-string |
4850 | 876 (concat key ": ") (cdr keyval) |
877 'sc-mail-field-modification-history)))) | |
878 ((eq action ?a) | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
879 (push (cons key (read-string (concat key ": "))) sc-mail-info)))))) |
4850 | 880 |
881 | |
882 ;; ====================================================================== | |
883 ;; attributions | |
884 | |
885 (defvar sc-attribution-confirmation-history nil | |
886 "History for confirmation of attribution strings.") | |
887 (defvar sc-citation-confirmation-history nil | |
888 "History for confirmation of attribution prefixes.") | |
889 | |
890 (defun sc-attribs-%@-addresses (from &optional delim) | |
891 "Extract the author's email terminus from email address FROM. | |
892 Match addresses of the style ``name%[stuff].'' when called with DELIM | |
893 of \"%\" and addresses of the style ``[stuff]name@[stuff]'' when | |
894 called with DELIM \"@\". If DELIM is nil or not provided, matches | |
895 addresses of the style ``name''." | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
896 (and (string-match (concat "[-[:alnum:]_.]+" delim) from 0) |
4850 | 897 (substring from |
898 (match-beginning 0) | |
899 (- (match-end 0) (if (null delim) 0 1))))) | |
900 | |
901 (defun sc-attribs-!-addresses (from) | |
902 "Extract the author's email terminus from email address FROM. | |
903 Match addresses of the style ``[stuff]![stuff]...!name[stuff].''" | |
904 (let ((eos (length from)) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
905 (mstart (string-match "![-[:alnum:]_.]+\\([^-![:alnum:]_.]\\|$\\)" |
4850 | 906 from 0)) |
907 (mend (match-end 0))) | |
908 (and mstart | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
909 (substring from (1+ mstart) (- mend (if (= mend eos) 0 1)))))) |
4850 | 910 |
911 (defun sc-attribs-<>-addresses (from) | |
912 "Extract the author's email terminus from email address FROM. | |
913 Match addresses of the style ``<name[stuff]>.''" | |
914 (and (string-match "<\\(.*\\)>" from) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
915 (match-string 1 from))) |
4850 | 916 |
917 (defun sc-get-address (from author) | |
918 "Get the full email address path from FROM. | |
919 AUTHOR is the author's name (which is removed from the address)." | |
920 (let ((eos (length from))) | |
61044
17207b620cf3
(sc-mail-field): Use assoc-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60924
diff
changeset
|
921 (if (string-match (concat "\\`\"?" (regexp-quote author) |
17207b620cf3
(sc-mail-field): Use assoc-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60924
diff
changeset
|
922 "\"?\\s +") from 0) |
4850 | 923 (let ((address (substring from (match-end 0) eos))) |
924 (if (and (= (aref address 0) ?<) | |
925 (= (aref address (1- (length address))) ?>)) | |
926 (substring address 1 (1- (length address))) | |
927 address)) | |
28437 | 928 (if (string-match "[-[:alnum:]!@%._]+" from 0) |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
929 (match-string 0 from) |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
930 "")))) |
4850 | 931 |
932 (defun sc-attribs-emailname (from) | |
933 "Get the email terminus name from FROM." | |
934 (or | |
935 (sc-attribs-%@-addresses from "%") | |
936 (sc-attribs-%@-addresses from "@") | |
937 (sc-attribs-!-addresses from) | |
938 (sc-attribs-<>-addresses from) | |
939 (sc-attribs-%@-addresses from) | |
940 (substring from 0 10))) | |
941 | |
942 (defun sc-name-substring (string start end extend) | |
943 "Extract the specified substring of STRING from START to END. | |
944 EXTEND is the number of characters on each side to extend the | |
945 substring." | |
946 (and start | |
947 (let ((sos (+ start extend)) | |
948 (eos (- end extend))) | |
949 (substring string sos | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
950 (or (string-match sc-titlecue-regexp string sos) eos))))) |
4850 | 951 |
952 (defun sc-attribs-extract-namestring (from) | |
953 "Extract the name string from FROM. | |
954 This should be the author's full name minus an optional title." | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
955 ;; FIXME: we probably should use mail-extract-address-components. |
4850 | 956 (let ((namestring |
957 (or | |
12859
90c22a02c12b
(sc-attribs-extract-namestring): If name has <...>,
Richard M. Stallman <rms@gnu.org>
parents:
12425
diff
changeset
|
958 ;; If there is a <...> in the name, |
90c22a02c12b
(sc-attribs-extract-namestring): If name has <...>,
Richard M. Stallman <rms@gnu.org>
parents:
12425
diff
changeset
|
959 ;; treat everything before that as the full name. |
90c22a02c12b
(sc-attribs-extract-namestring): If name has <...>,
Richard M. Stallman <rms@gnu.org>
parents:
12425
diff
changeset
|
960 ;; Even if it contains parens, use the whole thing. |
13813
7d18fdd1acf4
(sc-attribs-extract-namestring): Do look for
Karl Heuer <kwzh@gnu.org>
parents:
12859
diff
changeset
|
961 ;; On the other hand, we do look for quotes in the usual way. |
12859
90c22a02c12b
(sc-attribs-extract-namestring): If name has <...>,
Richard M. Stallman <rms@gnu.org>
parents:
12425
diff
changeset
|
962 (and (string-match " *<.*>" from 0) |
13813
7d18fdd1acf4
(sc-attribs-extract-namestring): Do look for
Karl Heuer <kwzh@gnu.org>
parents:
12859
diff
changeset
|
963 (let ((before-angles |
7d18fdd1acf4
(sc-attribs-extract-namestring): Do look for
Karl Heuer <kwzh@gnu.org>
parents:
12859
diff
changeset
|
964 (sc-name-substring from 0 (match-beginning 0) 0))) |
7d18fdd1acf4
(sc-attribs-extract-namestring): Do look for
Karl Heuer <kwzh@gnu.org>
parents:
12859
diff
changeset
|
965 (if (string-match "\".*\"" before-angles 0) |
7d18fdd1acf4
(sc-attribs-extract-namestring): Do look for
Karl Heuer <kwzh@gnu.org>
parents:
12859
diff
changeset
|
966 (sc-name-substring |
7d18fdd1acf4
(sc-attribs-extract-namestring): Do look for
Karl Heuer <kwzh@gnu.org>
parents:
12859
diff
changeset
|
967 before-angles (match-beginning 0) (match-end 0) 1) |
7d18fdd1acf4
(sc-attribs-extract-namestring): Do look for
Karl Heuer <kwzh@gnu.org>
parents:
12859
diff
changeset
|
968 before-angles))) |
4850 | 969 (sc-name-substring |
970 from (string-match "(.*)" from 0) (match-end 0) 1) | |
971 (sc-name-substring | |
972 from (string-match "\".*\"" from 0) (match-end 0) 1) | |
973 (sc-name-substring | |
28437 | 974 from (string-match "\\([-.[:alnum:]_]+\\s +\\)+<" from 0) |
4850 | 975 (match-end 1) 0) |
976 (sc-attribs-emailname from)))) | |
977 ;; strip off any leading or trailing whitespace | |
978 (if namestring | |
979 (let ((bos 0) | |
980 (eos (1- (length namestring)))) | |
981 (while (and (<= bos eos) | |
982 (memq (aref namestring bos) '(32 ?\t))) | |
983 (setq bos (1+ bos))) | |
984 (while (and (> eos bos) | |
985 (memq (aref namestring eos) '(32 ?\t))) | |
986 (setq eos (1- eos))) | |
987 (substring namestring bos (1+ eos)))))) | |
988 | |
989 (defun sc-attribs-chop-namestring (namestring) | |
990 "Convert NAMESTRING to a list of names. | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
991 example: (sc-attribs-chop-namestring \"John Xavier Doe\") |
4850 | 992 => (\"John\" \"Xavier\" \"Doe\")" |
993 (if (string-match "\\([ \t]*\\)\\([^ \t._]+\\)\\([ \t]*\\)" namestring) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
994 (cons (match-string 2 namestring) |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
995 (sc-attribs-chop-namestring (substring namestring (match-end 3)))))) |
4850 | 996 |
997 (defun sc-attribs-strip-initials (namelist) | |
998 "Extract the author's initials from the NAMELIST." | |
999 (mapconcat | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1000 (lambda (name) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1001 (if (< 0 (length name)) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1002 (substring name 0 1))) |
4850 | 1003 namelist "")) |
1004 | |
1005 (defun sc-guess-attribution (&optional string) | |
1006 "Guess attribution string on current line. | |
1007 If attribution cannot be guessed, nil is returned. Optional STRING if | |
1008 supplied, is used instead of the line point is on in the current buffer." | |
1009 (let ((start 0) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1010 (string (or string (buffer-substring (line-beginning-position) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1011 (line-end-position)))) |
4850 | 1012 attribution) |
1013 (and | |
1014 (= start (or (string-match sc-citation-leader-regexp string start) -1)) | |
1015 (setq start (match-end 0)) | |
1016 (= start (or (string-match sc-citation-root-regexp string start) 1)) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1017 (setq attribution (match-string 0 string) |
4850 | 1018 start (match-end 0)) |
1019 (= start (or (string-match sc-citation-delimiter-regexp string start) -1)) | |
1020 (setq start (match-end 0)) | |
1021 (= start (or (string-match sc-citation-separator-regexp string start) -1)) | |
1022 attribution))) | |
1023 | |
1024 (defun sc-attribs-filter-namelist (namelist) | |
1025 "Filter out noise in NAMELIST according to `sc-name-filter-alist'." | |
1026 (let ((elements (length namelist)) | |
1027 (position -1) | |
1028 keepers filtered-list) | |
84957
ac461e78456b
(sc-attribs-filter-namelist): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
78232
diff
changeset
|
1029 (mapc |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1030 (lambda (name) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1031 (setq position (1+ position)) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1032 (let ((keep-p t)) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1033 (mapc |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1034 (function |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1035 (lambda (filter) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1036 (let ((regexp (car filter)) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1037 (pos (cdr filter))) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1038 (if (and (string-match regexp name) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1039 (or (and (numberp pos) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1040 (= pos position)) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1041 (and (eq pos 'last) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1042 (= position (1- elements))) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1043 (eq pos 'any))) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1044 (setq keep-p nil))))) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1045 sc-name-filter-alist) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1046 (if keep-p |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1047 (setq keepers (cons position keepers))))) |
4850 | 1048 namelist) |
84957
ac461e78456b
(sc-attribs-filter-namelist): Use mapc rather than mapcar.
Glenn Morris <rgm@gnu.org>
parents:
78232
diff
changeset
|
1049 (mapc |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1050 (lambda (position) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1051 (setq filtered-list (cons (nth position namelist) filtered-list))) |
4850 | 1052 keepers) |
1053 filtered-list)) | |
1054 | |
1055 (defun sc-attribs-chop-address (from) | |
1056 "Extract attribution information from FROM. | |
1057 This populates the `sc-attributions' with the list of possible attributions." | |
1058 (if (and (stringp from) | |
1059 (< 0 (length from))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
43791
diff
changeset
|
1060 (let* ((sc-mumble "") |
4850 | 1061 (namestring (sc-attribs-extract-namestring from)) |
1062 (namelist (sc-attribs-filter-namelist | |
1063 (sc-attribs-chop-namestring namestring))) | |
1064 (revnames (reverse (cdr namelist))) | |
1065 (firstname (car namelist)) | |
1066 (midnames (reverse (cdr revnames))) | |
1067 (lastname (car revnames)) | |
1068 (initials (sc-attribs-strip-initials namelist)) | |
1069 (emailname (sc-attribs-emailname from)) | |
1070 (n 1) | |
1071 author middlenames) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
43791
diff
changeset
|
1072 |
4850 | 1073 ;; put basic information |
1074 (setq | |
1075 ;; put middle names and build sc-author entry | |
1076 middlenames (mapconcat | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1077 (lambda (midname) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1078 (let ((key-attribs (format "middlename-%d" n)) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1079 (key-mail (format "sc-middlename-%d" n))) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1080 (push (cons key-attribs midname) sc-attributions) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1081 (push (cons key-mail midname) sc-mail-info) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1082 (setq n (1+ n)) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1083 midname)) |
4850 | 1084 midnames " ") |
1085 | |
1086 author (concat firstname " " middlenames (and midnames " ") lastname) | |
1087 | |
1088 sc-attributions (append | |
1089 (list | |
1090 (cons "firstname" firstname) | |
1091 (cons "lastname" lastname) | |
1092 (cons "emailname" emailname) | |
1093 (cons "initials" initials)) | |
1094 sc-attributions) | |
1095 sc-mail-info (append | |
1096 (list | |
1097 (cons "sc-firstname" firstname) | |
1098 (cons "sc-middlenames" middlenames) | |
1099 (cons "sc-lastname" lastname) | |
1100 (cons "sc-emailname" emailname) | |
1101 (cons "sc-initials" initials) | |
1102 (cons "sc-author" author) | |
1103 (cons "sc-from-address" (sc-get-address | |
1104 (sc-mail-field "from") | |
1105 namestring)) | |
1106 (cons "sc-reply-address" (sc-get-address | |
1107 (sc-mail-field "reply-to") | |
1108 namestring)) | |
1109 (cons "sc-sender-address" (sc-get-address | |
1110 (sc-mail-field "sender") | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1111 namestring))) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1112 sc-mail-info))) |
4850 | 1113 ;; from string is empty |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1114 (push (cons "sc-author" sc-default-author-name) sc-mail-info))) |
4850 | 1115 |
1116 (defvar sc-attrib-or-cite nil | |
1117 "Used to toggle between attribution input or citation input.") | |
1118 | |
1119 (defun sc-toggle-fn () | |
1120 "Toggle between attribution selection and citation selection. | |
1121 Only used during confirmation." | |
1122 (interactive) | |
1123 (setq sc-attrib-or-cite (not sc-attrib-or-cite)) | |
1124 (throw 'sc-reconfirm t)) | |
1125 | |
1126 (defun sc-select-attribution () | |
1127 "Select an attribution from `sc-attributions'. | |
1128 | |
1129 Variables involved in selection process include: | |
1130 `sc-preferred-attribution-list' | |
1131 `sc-use-only-preference-p' | |
1132 `sc-confirm-always-p' | |
1133 `sc-default-attribution' | |
1134 `sc-attrib-selection-list'. | |
1135 | |
1136 Runs the hook `sc-attribs-preselect-hook' before selecting an | |
1137 attribution and the hook `sc-attribs-postselect-hook' after making the | |
1138 selection but before querying is performed. During | |
1139 `sc-attribs-postselect-hook' the variable `citation' is bound to the | |
1140 auto-selected citation string and the variable `attribution' is bound | |
1141 to the auto-selected attribution string." | |
1142 (run-hooks 'sc-attribs-preselect-hook) | |
1143 (let ((query-p sc-confirm-always-p) | |
1144 attribution citation | |
1145 (attriblist sc-preferred-attribution-list)) | |
1146 | |
1147 ;; first cruise through sc-preferred-attribution-list looking for | |
1148 ;; a match in either sc-attributions or sc-mail-info. if the | |
1149 ;; element is "sc-consult", then we have to do the alist | |
1150 ;; consultation phase | |
1151 (while attriblist | |
1152 (let* ((preferred (car attriblist))) | |
1153 (cond | |
1154 ((string= preferred "sc-consult") | |
1155 ;; we've been told to consult the attribution vs. mail | |
1156 ;; header key alist. we do this until we find a match in | |
1157 ;; the sc-attrib-selection-list. if we do not find a match, | |
1158 ;; we continue scanning attriblist | |
1159 (let ((attrib (sc-scan-info-alist sc-attrib-selection-list))) | |
1160 (cond | |
1161 ((not attrib) | |
1162 (setq attriblist (cdr attriblist))) | |
1163 ((stringp attrib) | |
1164 (setq attribution attrib | |
1165 attriblist nil)) | |
1166 ((listp attrib) | |
62903
9cca67e822b5
(sc-select-attribution): Only use a list element from
Glenn Morris <rgm@gnu.org>
parents:
62765
diff
changeset
|
1167 (setq attribution (eval attrib)) |
9cca67e822b5
(sc-select-attribution): Only use a list element from
Glenn Morris <rgm@gnu.org>
parents:
62765
diff
changeset
|
1168 (if (stringp attribution) |
9cca67e822b5
(sc-select-attribution): Only use a list element from
Glenn Morris <rgm@gnu.org>
parents:
62765
diff
changeset
|
1169 (setq attriblist nil) |
9cca67e822b5
(sc-select-attribution): Only use a list element from
Glenn Morris <rgm@gnu.org>
parents:
62765
diff
changeset
|
1170 (setq attribution nil |
9cca67e822b5
(sc-select-attribution): Only use a list element from
Glenn Morris <rgm@gnu.org>
parents:
62765
diff
changeset
|
1171 attriblist (cdr attriblist)))) |
4850 | 1172 (t (error "%s did not evaluate to a string or list!" |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1173 "sc-attrib-selection-list"))))) |
4850 | 1174 ((setq attribution (cdr (assoc preferred sc-attributions))) |
1175 (setq attriblist nil)) | |
1176 (t | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1177 (setq attriblist (cdr attriblist)))))) |
4850 | 1178 |
1179 ;; if preference was not found, we may use a secondary method to | |
1180 ;; find a valid attribution | |
1181 (if (and (not attribution) | |
1182 (not sc-use-only-preference-p)) | |
1183 ;; secondary method tries to find a preference in this order | |
1184 ;; 1. sc-lastchoice | |
1185 ;; 2. x-attribution | |
1186 ;; 3. firstname | |
1187 ;; 4. lastname | |
1188 ;; 5. initials | |
1189 ;; 6. first non-empty attribution in alist | |
1190 (setq attribution | |
1191 (or (cdr (assoc "sc-lastchoice" sc-attributions)) | |
1192 (cdr (assoc "x-attribution" sc-attributions)) | |
1193 (cdr (assoc "firstname" sc-attributions)) | |
1194 (cdr (assoc "lastname" sc-attributions)) | |
1195 (cdr (assoc "initials" sc-attributions)) | |
1196 (cdr (car sc-attributions))))) | |
1197 | |
1198 ;; still couldn't find an attribution. we're now limited to using | |
1199 ;; the default attribution, but we'll force a query when this happens | |
1200 (if (not attribution) | |
1201 (setq attribution sc-default-attribution | |
1202 query-p t)) | |
1203 | |
1204 ;; create the attribution prefix | |
1205 (setq citation (sc-make-citation attribution)) | |
1206 | |
1207 ;; run the post selection hook before querying the user | |
1208 (run-hooks 'sc-attribs-postselect-hook) | |
1209 | |
1210 ;; query for confirmation | |
1211 (if query-p | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1212 (let* ((query-alist (mapcar (lambda (entry) (list (cdr entry))) |
4850 | 1213 sc-attributions)) |
1214 (minibuffer-local-completion-map | |
1215 sc-minibuffer-local-completion-map) | |
1216 (minibuffer-local-map sc-minibuffer-local-map) | |
1217 (initial attribution) | |
1218 (completer-disable t) ; in case completer.el is used | |
1219 choice) | |
1220 (setq sc-attrib-or-cite nil) ; nil==attribution, t==citation | |
1221 (while | |
1222 (catch 'sc-reconfirm | |
43791
2e05b93ba14a
(sc-select-attribution): Accept whatever value we get in CHOICE; there
Richard M. Stallman <rms@gnu.org>
parents:
42206
diff
changeset
|
1223 (progn |
2e05b93ba14a
(sc-select-attribution): Accept whatever value we get in CHOICE; there
Richard M. Stallman <rms@gnu.org>
parents:
42206
diff
changeset
|
1224 (setq choice |
2e05b93ba14a
(sc-select-attribution): Accept whatever value we get in CHOICE; there
Richard M. Stallman <rms@gnu.org>
parents:
42206
diff
changeset
|
1225 (if sc-attrib-or-cite |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1226 (read-string |
43791
2e05b93ba14a
(sc-select-attribution): Accept whatever value we get in CHOICE; there
Richard M. Stallman <rms@gnu.org>
parents:
42206
diff
changeset
|
1227 "Enter citation prefix: " |
2e05b93ba14a
(sc-select-attribution): Accept whatever value we get in CHOICE; there
Richard M. Stallman <rms@gnu.org>
parents:
42206
diff
changeset
|
1228 citation |
2e05b93ba14a
(sc-select-attribution): Accept whatever value we get in CHOICE; there
Richard M. Stallman <rms@gnu.org>
parents:
42206
diff
changeset
|
1229 'sc-citation-confirmation-history) |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1230 (completing-read |
43791
2e05b93ba14a
(sc-select-attribution): Accept whatever value we get in CHOICE; there
Richard M. Stallman <rms@gnu.org>
parents:
42206
diff
changeset
|
1231 "Complete attribution name: " |
2e05b93ba14a
(sc-select-attribution): Accept whatever value we get in CHOICE; there
Richard M. Stallman <rms@gnu.org>
parents:
42206
diff
changeset
|
1232 query-alist nil nil |
2e05b93ba14a
(sc-select-attribution): Accept whatever value we get in CHOICE; there
Richard M. Stallman <rms@gnu.org>
parents:
42206
diff
changeset
|
1233 (cons initial 0) |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1234 'sc-attribution-confirmation-history))) |
43791
2e05b93ba14a
(sc-select-attribution): Accept whatever value we get in CHOICE; there
Richard M. Stallman <rms@gnu.org>
parents:
42206
diff
changeset
|
1235 nil))) |
4850 | 1236 (if sc-attrib-or-cite |
1237 ;; since the citation was chosen, we have to guess at | |
1238 ;; the attribution | |
1239 (setq citation choice | |
1240 attribution (or (sc-guess-attribution citation) | |
1241 citation)) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
43791
diff
changeset
|
1242 |
4850 | 1243 (setq citation (sc-make-citation choice) |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1244 attribution choice)))) |
4850 | 1245 |
1246 ;; its possible that the user wants to downcase the citation and | |
1247 ;; attribution | |
1248 (if sc-downcase-p | |
1249 (setq citation (downcase citation) | |
1250 attribution (downcase attribution))) | |
1251 | |
1252 ;; set up mail info alist | |
1253 (let* ((ckey "sc-citation") | |
1254 (akey "sc-attribution") | |
1255 (ckeyval (assoc ckey sc-mail-info)) | |
1256 (akeyval (assoc akey sc-mail-info))) | |
1257 (if ckeyval | |
1258 (setcdr ckeyval citation) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1259 (push (cons ckey citation) sc-mail-info)) |
4850 | 1260 (if akeyval |
1261 (setcdr akeyval attribution) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1262 (push (cons akey attribution) sc-mail-info))) |
4850 | 1263 |
1264 ;; set the sc-lastchoice attribution | |
1265 (let* ((lkey "sc-lastchoice") | |
1266 (lastchoice (assoc lkey sc-attributions))) | |
1267 (if lastchoice | |
1268 (setcdr lastchoice attribution) | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1269 (push (cons lkey attribution) sc-attributions))))) |
4850 | 1270 |
1271 | |
1272 ;; ====================================================================== | |
1273 ;; filladapt hooks for supercite 3.1. you shouldn't need anything | |
1274 ;; extra to make gin-mode understand supercited lines. Even this | |
1275 ;; stuff might not be entirely necessary... | |
1276 | |
1277 (defun sc-cite-regexp (&optional root-regexp) | |
1278 "Return a regexp describing a Supercited line. | |
1279 The regexp is the concatenation of `sc-citation-leader-regexp', | |
1280 `sc-citation-root-regexp', `sc-citation-delimiter-regexp', and | |
1281 `sc-citation-separator-regexp'. If optional ROOT-REGEXP is supplied, | |
1282 use it instead of `sc-citation-root-regexp'." | |
1283 (concat sc-citation-leader-regexp | |
1284 (or root-regexp sc-citation-root-regexp) | |
1285 sc-citation-delimiter-regexp | |
1286 sc-citation-separator-regexp)) | |
1287 | |
1288 (defun sc-make-citation (attribution) | |
1289 "Make a non-nested citation from ATTRIBUTION." | |
1290 (concat sc-citation-leader | |
1291 attribution | |
1292 sc-citation-delimiter | |
1293 sc-citation-separator)) | |
1294 | |
63945
eb399d132bf4
(filladapt-prefix-table): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
63056
diff
changeset
|
1295 (defvar filladapt-prefix-table) |
eb399d132bf4
(filladapt-prefix-table): Add defvar.
Richard M. Stallman <rms@gnu.org>
parents:
63056
diff
changeset
|
1296 |
4850 | 1297 (defun sc-setup-filladapt () |
1298 "Setup `filladapt-prefix-table' to handle Supercited paragraphs." | |
1299 (let* ((fa-sc-elt 'filladapt-supercite-included-text) | |
1300 (elt (rassq fa-sc-elt filladapt-prefix-table))) | |
1301 (if elt (setcar elt (sc-cite-regexp)) | |
1302 (message "Filladapt doesn't seem to know about Supercite.") | |
1303 (beep)))) | |
1304 | |
1305 | |
1306 ;; ====================================================================== | |
1307 ;; citing and unciting regions of text | |
1308 | |
1309 (defvar sc-fill-begin 1 | |
1310 "Buffer position to begin filling.") | |
1311 (defvar sc-fill-line-prefix "" | |
1312 "Fill prefix of previous line") | |
1313 | |
1314 ;; filling | |
1315 (defun sc-fill-if-different (&optional prefix) | |
1316 "Fill the region bounded by `sc-fill-begin' and point. | |
1317 Only fill if optional PREFIX is different than `sc-fill-line-prefix'. | |
1318 If `sc-auto-fill-region-p' is nil, do not fill region. If PREFIX is | |
1319 not supplied, initialize fill variables. This is useful for a regi | |
1320 `begin' frame-entry." | |
1321 (if (not prefix) | |
1322 (setq sc-fill-line-prefix "" | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1323 sc-fill-begin (line-beginning-position)) |
4850 | 1324 (if (and sc-auto-fill-region-p |
1325 (not (string= prefix sc-fill-line-prefix))) | |
1326 (let ((fill-prefix sc-fill-line-prefix)) | |
1327 (if (not (string= fill-prefix "")) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1328 (fill-region sc-fill-begin (line-beginning-position))) |
4850 | 1329 (setq sc-fill-line-prefix prefix |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1330 sc-fill-begin (line-beginning-position))))) |
4850 | 1331 nil) |
1332 | |
1333 (defun sc-cite-coerce-cited-line () | |
1334 "Coerce a Supercited line to look like our style." | |
1335 (let* ((attribution (sc-guess-attribution)) | |
1336 (regexp (sc-cite-regexp attribution)) | |
1337 (prefix (sc-make-citation attribution))) | |
1338 (if (and attribution | |
1339 (looking-at regexp)) | |
1340 (progn | |
1341 (delete-region | |
1342 (match-beginning 0) | |
1343 (save-excursion | |
1344 (goto-char (match-end 0)) | |
1345 (if (bolp) (forward-char -1)) | |
1346 (point))) | |
1347 (insert prefix) | |
1348 (sc-fill-if-different prefix))) | |
1349 nil)) | |
1350 | |
1351 (defun sc-cite-coerce-dumb-citer () | |
1352 "Coerce a non-nested citation that's been cited with a dumb nesting citer." | |
1353 (delete-region (match-beginning 1) (match-end 1)) | |
1354 (beginning-of-line) | |
1355 (sc-cite-coerce-cited-line)) | |
1356 | |
1357 (defun sc-guess-nesting (&optional string) | |
1358 "Guess the citation nesting on the current line. | |
1359 If nesting cannot be guessed, nil is returned. Optional STRING if | |
1360 supplied, is used instead of the line point is on in the current | |
1361 buffer." | |
1362 (let ((start 0) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1363 (string (or string (buffer-substring (line-beginning-position) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1364 (line-end-position)))) |
4850 | 1365 nesting) |
1366 (and | |
1367 (= start (or (string-match sc-citation-leader-regexp string start) -1)) | |
1368 (setq start (match-end 0)) | |
1369 (= start (or (string-match sc-citation-delimiter-regexp string start) -1)) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1370 (setq nesting (match-string 0 string) |
4850 | 1371 start (match-end 0)) |
1372 (= start (or (string-match sc-citation-separator-regexp string start) -1)) | |
1373 nesting))) | |
1374 | |
1375 (defun sc-add-citation-level () | |
14007
c6476f4bb121
(sc-citation-nonnested-root-regexp,
Karl Heuer <kwzh@gnu.org>
parents:
13813
diff
changeset
|
1376 "Add a citation level for nested citation style w/ coercion." |
4850 | 1377 (let* ((nesting (sc-guess-nesting)) |
1378 (citation (make-string (1+ (length nesting)) | |
1379 (string-to-char sc-citation-delimiter))) | |
1380 (prefix (concat sc-citation-leader citation sc-citation-separator))) | |
1381 (if (looking-at (sc-cite-regexp "")) | |
1382 (delete-region (match-beginning 0) (match-end 0))) | |
1383 (insert prefix) | |
1384 (sc-fill-if-different prefix))) | |
1385 | |
1386 (defun sc-cite-line (&optional citation) | |
1387 "Cite a single line of uncited text. | |
1388 Optional CITATION overrides any citation automatically selected." | |
1389 (if sc-fixup-whitespace-p | |
1390 (fixup-whitespace)) | |
1391 (let ((prefix (or citation | |
1392 (cdr (assoc "sc-citation" sc-mail-info)) | |
1393 sc-default-attribution))) | |
1394 (insert prefix) | |
1395 (sc-fill-if-different prefix)) | |
1396 nil) | |
1397 | |
1398 (defun sc-uncite-line () | |
1399 "Remove citation from current line." | |
1400 (let ((cited (looking-at (sc-cite-regexp)))) | |
1401 (if cited | |
1402 (delete-region (match-beginning 0) (match-end 0)))) | |
1403 nil) | |
1404 | |
1405 (defun sc-recite-line (regexp) | |
1406 "Remove citation matching REGEXP from current line and recite line." | |
1407 (let ((cited (looking-at (concat "^" regexp))) | |
1408 (prefix (cdr (assoc "sc-citation" sc-mail-info)))) | |
1409 (if cited | |
1410 (delete-region (match-beginning 0) (match-end 0))) | |
1411 (insert (or prefix sc-default-attribution)) | |
1412 (sc-fill-if-different prefix)) | |
1413 nil) | |
1414 | |
1415 ;; interactive functions | |
57933
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1416 (defun sc-cite-region (start end &optional confirm-p interactive) |
4850 | 1417 "Cite a region delineated by START and END. |
1418 If optional CONFIRM-P is non-nil, the attribution is confirmed before | |
1419 its use in the citation string. This function first runs | |
57933
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1420 `sc-pre-cite-hook'. |
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1421 |
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1422 When called interactively, the optional arg INTERACTIVE is non-nil, |
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1423 and that means call `sc-select-attribution' too." |
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1424 (interactive "r\nP\np") |
4850 | 1425 (undo-boundary) |
58952
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1426 (let ((frame (sc-scan-info-alist sc-cite-frame-alist)) |
4850 | 1427 (sc-confirm-always-p (if confirm-p t sc-confirm-always-p))) |
58952
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1428 (if (and frame (symbolp frame)) |
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1429 (setq frame (symbol-value frame))) |
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1430 (or frame (setq frame sc-default-cite-frame)) |
4850 | 1431 (run-hooks 'sc-pre-cite-hook) |
57933
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1432 (if interactive |
4850 | 1433 (sc-select-attribution)) |
1434 (regi-interpret frame start end))) | |
1435 | |
1436 (defun sc-uncite-region (start end) | |
1437 "Uncite a region delineated by START and END. | |
1438 First runs `sc-pre-uncite-hook'." | |
1439 (interactive "r") | |
1440 (undo-boundary) | |
58952
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1441 (let ((frame (sc-scan-info-alist sc-uncite-frame-alist))) |
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1442 (if (and frame (symbolp frame)) |
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1443 (setq frame (symbol-value frame))) |
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1444 (or frame (setq frame sc-default-uncite-frame)) |
4850 | 1445 (run-hooks 'sc-pre-uncite-hook) |
1446 (regi-interpret frame start end))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
43791
diff
changeset
|
1447 |
4850 | 1448 (defun sc-recite-region (start end) |
1449 "Recite a region delineated by START and END. | |
1450 First runs `sc-pre-recite-hook'." | |
1451 (interactive "r") | |
1452 (let ((sc-confirm-always-p t)) | |
1453 (sc-select-attribution)) | |
1454 (undo-boundary) | |
58952
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1455 (let ((frame (sc-scan-info-alist sc-recite-frame-alist))) |
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1456 (if (and frame (symbolp frame)) |
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1457 (setq frame (symbol-value frame))) |
5c34e026a96e
(sc-cite-frame-alist): Doc fix.
Juri Linkov <juri@jurta.org>
parents:
58583
diff
changeset
|
1458 (or frame (setq frame sc-default-recite-frame)) |
4850 | 1459 (run-hooks 'sc-pre-recite-hook) |
1460 (regi-interpret frame start end))) | |
1461 | |
1462 | |
1463 ;; ====================================================================== | |
1464 ;; building headers | |
1465 | |
1466 (defun sc-hdr (prefix field &optional sep return-nil-p) | |
1467 "Returns a concatenation of PREFIX and FIELD. | |
1468 If FIELD is not a string or is the empty string, the empty string will | |
1469 be returned. Optional third argument SEP is concatenated on the end if | |
1470 it is a string. Returns empty string, unless optional RETURN-NIL-P is | |
1471 non-nil." | |
1472 (if (and (stringp field) | |
1473 (not (string= field ""))) | |
1474 (concat prefix field (or sep "")) | |
1475 (and (not return-nil-p) ""))) | |
1476 | |
1477 (defun sc-whofrom () | |
1478 "Return the value of (sc-mail-field \"from\") or nil." | |
1479 (let ((sc-mumble nil)) | |
1480 (sc-mail-field "from"))) | |
1481 | |
1482 (defun sc-no-header () | |
1483 "Does nothing. Use this instead of nil to get a blank header." | |
1484 ()) | |
1485 | |
107411
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1486 (declare-function mh-in-header-p "mh-utils" ()) |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1487 |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1488 (defun sc-no-blank-line-or-header () |
14007
c6476f4bb121
(sc-citation-nonnested-root-regexp,
Karl Heuer <kwzh@gnu.org>
parents:
13813
diff
changeset
|
1489 "Similar to `sc-no-header' except it removes the preceding blank line." |
107411
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1490 (and (not (bobp)) |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1491 (eolp) |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1492 (progn (forward-line -1) |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1493 (or (= (point) |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1494 (save-excursion |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1495 (rfc822-goto-eoh) |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1496 (line-beginning-position 2))) |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1497 (and (eq major-mode 'mh-letter-mode) |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1498 (mh-in-header-p)))) |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1499 (progn |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1500 (forward-line) |
f96fe531e7a6
Remove supercite.el's need for sendmail.el.
Glenn Morris <rgm@gnu.org>
parents:
106815
diff
changeset
|
1501 (kill-line)))) |
4850 | 1502 |
1503 (defun sc-header-on-said () | |
1504 "\"On <date>, <from> said:\" unless: | |
1505 1. the \"from\" field cannot be found, in which case nothing is inserted; | |
1506 2. the \"date\" field is missing in which case only the from part is printed." | |
1507 (let ((sc-mumble "") | |
1508 (whofrom (sc-whofrom))) | |
1509 (if whofrom | |
1510 (insert sc-reference-tag-string | |
1511 (sc-hdr "On " (sc-mail-field "date") ", ") | |
1512 whofrom " said:\n")))) | |
1513 | |
1514 (defun sc-header-inarticle-writes () | |
1515 "\"In article <message-id>, <from> writes:\" | |
1516 Treats \"message-id\" and \"from\" fields similar to `sc-header-on-said'." | |
1517 (let ((sc-mumble "") | |
1518 (whofrom (sc-mail-field "from"))) | |
1519 (if whofrom | |
1520 (insert sc-reference-tag-string | |
1521 (sc-hdr "In article " (sc-mail-field "message-id") ", ") | |
1522 whofrom " writes:\n")))) | |
1523 | |
1524 (defun sc-header-regarding-adds () | |
1525 "\"Regarding <subject>; <from> adds:\" | |
1526 Treats \"subject\" and \"from\" fields similar to `sc-header-on-said'." | |
1527 (let ((sc-mumble "") | |
1528 (whofrom (sc-whofrom))) | |
1529 (if whofrom | |
1530 (insert sc-reference-tag-string | |
1531 (sc-hdr "Regarding " (sc-mail-field "subject") "; ") | |
1532 whofrom " adds:\n")))) | |
1533 | |
1534 (defun sc-header-attributed-writes () | |
1535 "\"<sc-attribution>\" == <sc-author> <address> writes: | |
1536 Treats these fields in a similar manner to `sc-header-on-said'." | |
1537 (let ((sc-mumble "") | |
1538 (whofrom (sc-whofrom))) | |
1539 (if whofrom | |
1540 (insert sc-reference-tag-string | |
1541 (sc-hdr "\"" (sc-mail-field "sc-attribution") "\" == ") | |
1542 (sc-hdr "" (sc-mail-field "sc-author") " ") | |
1543 (or (sc-hdr "<" (sc-mail-field "sc-from-address") ">" t) | |
1544 (sc-hdr "<" (sc-mail-field "sc-reply-address") ">" t) | |
1545 "") | |
1546 " writes:\n")))) | |
1547 | |
1548 (defun sc-header-author-writes () | |
1549 "<sc-author> writes:" | |
1550 (let ((sc-mumble "") | |
1551 (whofrom (sc-whofrom))) | |
1552 (if whofrom | |
1553 (insert sc-reference-tag-string | |
1554 (sc-hdr "" (sc-mail-field "sc-author")) | |
1555 " writes:\n")))) | |
1556 | |
1557 (defun sc-header-verbose () | |
1558 "Very verbose, some say gross." | |
1559 (let ((sc-mumble "") | |
1560 (whofrom (sc-whofrom)) | |
1561 (tag sc-reference-tag-string)) | |
1562 (if whofrom | |
1563 (insert (sc-hdr (concat tag "On ") (sc-mail-field "date") ",\n") | |
1564 (or (sc-hdr tag (sc-mail-field "sc-author") "\n" t) | |
1565 (concat tag whofrom "\n")) | |
1566 (sc-hdr (concat tag "from the organization of ") | |
1567 (sc-mail-field "organization") "\n") | |
1568 (let ((rtag (concat tag "who can be reached at: "))) | |
1569 (or (sc-hdr rtag (sc-mail-field "sc-from-address") "\n" t) | |
1570 (sc-hdr rtag (sc-mail-field "sc-reply-address") "\n" t) | |
1571 "")) | |
1572 (sc-hdr | |
1573 (concat tag "(whose comments are cited below with \"") | |
1574 (sc-mail-field "sc-citation") "\"),\n") | |
1575 (sc-hdr (concat tag "had this to say in article ") | |
1576 (sc-mail-field "message-id") "\n") | |
1577 (sc-hdr (concat tag "in newsgroups ") | |
1578 (sc-mail-field "newsgroups") "\n") | |
1579 (sc-hdr (concat tag "concerning the subject of ") | |
1580 (sc-mail-field "subject") "\n") | |
1581 (sc-hdr (concat tag "(see ") | |
1582 (sc-mail-field "references") | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1583 " for more details)\n"))))) |
4850 | 1584 |
1585 | |
1586 ;; ====================================================================== | |
1587 ;; header rewrites | |
1588 | |
1589 (defconst sc-electric-bufname " *sc-erefs* " | |
1590 "Supercite electric reference mode's buffer name.") | |
1591 (defvar sc-eref-style 0 | |
1592 "Current electric reference style.") | |
1593 | |
1594 (defun sc-valid-index-p (index) | |
1595 "Returns INDEX if it is a valid index into `sc-rewrite-header-list'. | |
1596 Otherwise returns nil." | |
1597 ;; a number, and greater than or equal to zero | |
1598 ;; less than or equal to the last index | |
1599 (and (natnump index) | |
1600 (< index (length sc-rewrite-header-list)) | |
1601 index)) | |
1602 | |
1603 (defun sc-eref-insert-selected (&optional nomsg) | |
1604 "Insert the selected reference header in the current buffer. | |
1605 Optional NOMSG, if non-nil, inhibits printing messages, unless an | |
1606 error occurs." | |
1607 (let ((ref (nth sc-eref-style sc-rewrite-header-list))) | |
1608 (condition-case err | |
1609 (progn | |
1610 (eval ref) | |
1611 (let ((lines (count-lines (point-min) (point-max)))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
43791
diff
changeset
|
1612 (or nomsg (message "Ref header %d [%d line%s]: %s" |
4850 | 1613 sc-eref-style lines |
1614 (if (= lines 1) "" "s") | |
1615 ref)))) | |
1616 (void-function | |
1617 (progn (message | |
1618 "Symbol's function definition is void: %s (Header %d)" | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1619 (cadr err) sc-eref-style) |
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1620 (beep)))))) |
4850 | 1621 |
108243
be3f6d650654
Minor cleanups.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107411
diff
changeset
|
1622 (defun sc-electric-mode (&optional style) |
be3f6d650654
Minor cleanups.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107411
diff
changeset
|
1623 "Mode for viewing Supercite reference headers. Commands are: |
4850 | 1624 \n\\{sc-electric-mode-map} |
1625 | |
1626 `sc-electric-mode' is not intended to be run interactively, but rather | |
1627 accessed through Supercite's electric reference feature. See | |
108243
be3f6d650654
Minor cleanups.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107411
diff
changeset
|
1628 `sc-insert-reference' for more details. Optional STYLE is the initial |
4850 | 1629 header style to use, unless not supplied or invalid, in which case |
1630 `sc-preferred-header-style' is used." | |
1631 | |
1632 (let ((info sc-mail-info)) | |
1633 | |
1634 (setq sc-eref-style | |
108243
be3f6d650654
Minor cleanups.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
107411
diff
changeset
|
1635 (or (sc-valid-index-p style) |
4850 | 1636 (sc-valid-index-p sc-preferred-header-style) |
1637 0)) | |
1638 | |
1639 (get-buffer-create sc-electric-bufname) | |
1640 ;; set up buffer and enter command loop | |
1641 (save-excursion | |
1642 (save-window-excursion | |
1643 (pop-to-buffer sc-electric-bufname) | |
1644 (kill-all-local-variables) | |
1645 (let ((sc-mail-info info) | |
1646 (buffer-read-only t) | |
1647 (mode-name "SC Electric Refs") | |
1648 (major-mode 'sc-electric-mode)) | |
1649 (use-local-map sc-electric-mode-map) | |
1650 (sc-eref-show sc-eref-style) | |
62765
db1434c1a2f5
(sc-electric-mode): Use run-mode-hooks.
Lute Kamstra <lute@gnu.org>
parents:
62315
diff
changeset
|
1651 (run-mode-hooks 'sc-electric-mode-hook) |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1652 (recursive-edit)))) |
4850 | 1653 |
1654 (and sc-eref-style | |
1655 (sc-eref-insert-selected)) | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1656 (kill-buffer sc-electric-bufname))) |
4850 | 1657 |
1658 ;; functions for electric reference mode | |
1659 (defun sc-eref-show (index) | |
1660 "Show reference INDEX in `sc-rewrite-header-list'." | |
1661 (let ((msg "No %ing reference headers in list.") | |
1662 (last (length sc-rewrite-header-list))) | |
1663 (setq sc-eref-style | |
1664 (cond | |
1665 ((sc-valid-index-p index) index) | |
1666 ((< index 0) | |
1667 (if sc-electric-circular-p | |
1668 (1- last) | |
1669 (progn (error msg "preced") 0))) | |
1670 ((>= index last) | |
1671 (if sc-electric-circular-p | |
1672 0 | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1673 (progn (error msg "follow") (1- last)))))) |
105829
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1674 (with-current-buffer sc-electric-bufname |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1675 (let ((inhibit-read-only t)) |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1676 (erase-buffer) |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1677 (goto-char (point-min)) |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1678 (sc-eref-insert-selected) |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1679 ;; now shrink the window to just contain the electric reference |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1680 ;; header. |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1681 (let ((hdrlines (count-lines (point-min) (point-max))) |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1682 (winlines (1- (window-height)))) |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1683 (if (/= hdrlines winlines) |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1684 (if (> hdrlines winlines) |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1685 ;; we have to enlarge the window |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1686 (enlarge-window (- hdrlines winlines)) |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1687 ;; we have to shrink the window |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1688 (shrink-window (- winlines (max hdrlines |
328150f0cf76
* url-util.el (url-insert-entities-in-string):
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
102651
diff
changeset
|
1689 window-min-height)))))))))) |
4850 | 1690 |
1691 (defun sc-eref-next () | |
1692 "Display next reference in other buffer." | |
1693 (interactive) | |
1694 (sc-eref-show (1+ sc-eref-style))) | |
1695 | |
1696 (defun sc-eref-prev () | |
1697 "Display previous reference in other buffer." | |
1698 (interactive) | |
1699 (sc-eref-show (1- sc-eref-style))) | |
1700 | |
1701 (defun sc-eref-setn () | |
1702 "Set reference header selected as preferred." | |
1703 (interactive) | |
1704 (setq sc-preferred-header-style sc-eref-style) | |
1705 (message "Preferred reference style set to header %d." sc-eref-style)) | |
1706 | |
1707 (defun sc-eref-goto (refnum) | |
1708 "Show reference style indexed by REFNUM. | |
1709 If REFNUM is an invalid index, don't go to that reference and return | |
1710 nil." | |
1711 (interactive "NGoto Reference: ") | |
1712 (if (sc-valid-index-p refnum) | |
1713 (sc-eref-show refnum) | |
1714 (error "Invalid reference: %d. (Range: [%d .. %d])" | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1715 refnum 0 (1- (length sc-rewrite-header-list))))) |
4850 | 1716 |
1717 (defun sc-eref-jump () | |
1718 "Set reference header to preferred header." | |
1719 (interactive) | |
1720 (sc-eref-show sc-preferred-header-style)) | |
1721 | |
1722 (defun sc-eref-abort () | |
1723 "Exit from electric reference mode without inserting reference." | |
1724 (interactive) | |
1725 (setq sc-eref-style nil) | |
1726 (exit-recursive-edit)) | |
1727 | |
1728 (defun sc-eref-exit () | |
1729 "Exit from electric reference mode and insert selected reference." | |
1730 (interactive) | |
1731 (exit-recursive-edit)) | |
1732 | |
1733 (defun sc-insert-reference (arg) | |
1734 "Insert, at point, a reference header in the body of the reply. | |
1735 Numeric ARG indicates which header style from `sc-rewrite-header-list' | |
1736 to use when rewriting the header. No supplied ARG indicates use of | |
1737 `sc-preferred-header-style'. | |
1738 | |
1739 With just `\\[universal-argument]', electric reference insert mode is | |
1740 entered, regardless of the value of `sc-electric-references-p'. See | |
1741 `sc-electric-mode' for more information." | |
1742 (interactive "P") | |
1743 (if (consp arg) | |
1744 (sc-electric-mode) | |
1745 (let ((preference (or (sc-valid-index-p arg) | |
1746 (sc-valid-index-p sc-preferred-header-style) | |
1747 sc-preferred-header-style | |
1748 0))) | |
1749 (if sc-electric-references-p | |
1750 (sc-electric-mode preference) | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1751 (sc-eref-insert-selected t))))) |
4850 | 1752 |
1753 | |
1754 ;; ====================================================================== | |
1755 ;; variable toggling | |
1756 | |
1757 (defun sc-raw-mode-toggle () | |
1758 "Toggle, in one fell swoop, two important SC variables: | |
1759 `sc-fixup-whitespace-p' and `sc-auto-fill-region-p'" | |
1760 (interactive) | |
1761 (setq sc-fixup-whitespace-p (not sc-fixup-whitespace-p) | |
1762 sc-auto-fill-region-p (not sc-auto-fill-region-p)) | |
11571
771bd7ddd4cc
(sc-raw-mode-toggle): Use force-mode-line-update.
Karl Heuer <kwzh@gnu.org>
parents:
11556
diff
changeset
|
1763 (force-mode-line-update)) |
4850 | 1764 |
1765 (defun sc-toggle-var (variable) | |
1766 "Boolean toggle VARIABLE's value. | |
42206 | 1767 VARIABLE must be a bound symbol. nil values change to t, non-nil |
4850 | 1768 values are changed to nil." |
1769 (message "%s changed from %s to %s" | |
1770 variable (symbol-value variable) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1771 (set variable (not (symbol-value variable))))) |
4850 | 1772 |
1773 (defun sc-set-variable (var) | |
1774 "Set the Supercite VARIABLE. | |
1775 This function mimics `set-variable', except that the variable to set | |
1776 is determined non-interactively. The value is queried for in the | |
1777 minibuffer exactly the same way that `set-variable' does it. | |
1778 | |
1779 You can see the current value of the variable when the minibuffer is | |
1780 querying you by typing `C-h'. Note that the format is changed | |
1781 slightly from that used by `set-variable' -- the current value is | |
1782 printed just after the variable's name instead of at the bottom of the | |
1783 help window." | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1784 (let* ((minibuffer-help-form '(funcall myhelp)) |
4850 | 1785 (myhelp |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1786 (lambda () |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1787 (with-output-to-temp-buffer "*Help*" |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1788 (prin1 var) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1789 (if (boundp var) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1790 (let ((print-length 20)) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1791 (princ "\t(Current value: ") |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1792 (prin1 (symbol-value var)) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1793 (princ ")"))) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1794 (princ "\n\nDocumentation:\n") |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1795 (princ (substring (documentation-property |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1796 var |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1797 'variable-documentation) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1798 1)) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1799 (with-current-buffer standard-output |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1800 (help-mode)) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1801 nil)))) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1802 (set var (eval-minibuffer (format "Set %s to value: " var))))) |
4850 | 1803 |
1804 (defmacro sc-toggle-symbol (rootname) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1805 `(defun ,(intern (concat "sc-T-" rootname)) () |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1806 (interactive) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1807 (sc-toggle-var ',(intern (concat "sc-" rootname "-p"))))) |
4850 | 1808 |
1809 (defmacro sc-setvar-symbol (rootname) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1810 `(defun ,(intern (concat "sc-S-" rootname)) () |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1811 (interactive) |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1812 (sc-set-variable ',(intern (concat "sc-" rootname))))) |
4850 | 1813 |
1814 (sc-toggle-symbol "confirm-always") | |
1815 (sc-toggle-symbol "downcase") | |
1816 (sc-toggle-symbol "electric-references") | |
1817 (sc-toggle-symbol "auto-fill-region") | |
1818 (sc-toggle-symbol "mail-nuke-blank-lines") | |
1819 (sc-toggle-symbol "nested-citation") | |
1820 (sc-toggle-symbol "electric-circular") | |
1821 (sc-toggle-symbol "use-only-preferences") | |
1822 (sc-toggle-symbol "fixup-whitespace") | |
1823 | |
1824 (sc-setvar-symbol "preferred-attribution-list") | |
1825 (sc-setvar-symbol "preferred-header-style") | |
1826 (sc-setvar-symbol "mail-nuke-mail-headers") | |
1827 (sc-setvar-symbol "mail-header-nuke-list") | |
1828 (sc-setvar-symbol "cite-region-limit") | |
1829 | |
1830 (defun sc-T-describe () | |
1831 " | |
1832 | |
1833 Supercite provides a number of key bindings which simplify the process | |
1834 of setting or toggling certain variables controlling its operation. | |
1835 | |
1836 Note on function names in this list: all functions of the form | |
1837 `sc-S-<name>' actually call `sc-set-variable' on the corresponding | |
1838 `sc-<name>' variable. All functions of the form `sc-T-<name>' call | |
1839 `sc-toggle-var' on the corresponding `sc-<name>-p' variable. | |
1840 | |
1841 \\{sc-T-keymap}" | |
1842 (interactive) | |
1843 (describe-function 'sc-T-describe)) | |
1844 | |
1845 | |
1846 ;; ====================================================================== | |
1847 ;; published interface to mail and news readers | |
1848 | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1849 (define-minor-mode sc-minor-mode |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1850 "Supercite minor mode." |
61282
73d56a93d9fd
(sc-minor-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61044
diff
changeset
|
1851 :group 'supercite |
73d56a93d9fd
(sc-minor-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61044
diff
changeset
|
1852 :lighter (" SC" (sc-auto-fill-region-p |
73d56a93d9fd
(sc-minor-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61044
diff
changeset
|
1853 (":f" (sc-fixup-whitespace-p "w")) |
73d56a93d9fd
(sc-minor-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61044
diff
changeset
|
1854 (sc-fixup-whitespace-p ":w"))) |
73d56a93d9fd
(sc-minor-mode): Specify :group.
Lute Kamstra <lute@gnu.org>
parents:
61044
diff
changeset
|
1855 :keymap `((,sc-mode-map-prefix . ,sc-mode-map))) |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1856 |
7370
ecb09a00d330
(sc-cite-original): Add autoload.
Richard M. Stallman <rms@gnu.org>
parents:
5286
diff
changeset
|
1857 ;;;###autoload |
4850 | 1858 (defun sc-cite-original () |
1859 "Workhorse citing function which performs the initial citation. | |
1860 This is callable from the various mail and news readers' reply | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1861 function according to the agreed upon standard. See the associated |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1862 info node `(SC)Top' for more details. |
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1863 `sc-cite-original' does not do any yanking of the |
4850 | 1864 original message but it does require a few things: |
1865 | |
1866 1) The reply buffer is the current buffer. | |
1867 | |
1868 2) The original message has been yanked and inserted into the | |
1869 reply buffer. | |
1870 | |
1871 3) Verbose mail headers from the original message have been | |
1872 inserted into the reply buffer directly before the text of the | |
1873 original message. | |
1874 | |
1875 4) Point is at the beginning of the verbose headers. | |
1876 | |
1877 5) Mark is at the end of the body of text to be cited. | |
1878 | |
92244 | 1879 The region need not be active (and typically isn't when this |
1880 function is called). Also, the hook `sc-pre-hook' is run before, | |
1881 and `sc-post-hook' is run after the guts of this function." | |
4850 | 1882 (run-hooks 'sc-pre-hook) |
1883 | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1884 (sc-minor-mode 1) |
4850 | 1885 |
1886 (undo-boundary) | |
1887 | |
1888 ;; grab point and mark since the region is probably not active when | |
1889 ;; this function gets automatically called. we want point to be a | |
1890 ;; mark so any deleting before point works properly | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1891 (let* ((zmacs-regions nil) ; for XEemacs |
24876 | 1892 (mark-active t) ; for Emacs |
4850 | 1893 (point (point-marker)) |
1894 (mark (copy-marker (mark-marker)))) | |
49598
0d8b17d428b5
Trailing whitepace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
43791
diff
changeset
|
1895 |
4850 | 1896 ;; make sure point comes before mark, not all functions are |
1897 ;; interactive "r" | |
1898 (if (< mark point) | |
1899 (let ((tmp point)) | |
1900 (setq point mark | |
1901 mark tmp))) | |
1902 | |
1903 ;; first process mail headers, and populate sc-mail-info | |
1904 (sc-mail-process-headers point mark) | |
1905 | |
1906 ;; now get possible attributions | |
1907 (sc-attribs-chop-address (or (sc-mail-field "from") | |
1908 (sc-mail-field "reply") | |
1909 (sc-mail-field "reply-to") | |
1910 (sc-mail-field "sender"))) | |
1911 ;; select the attribution | |
1912 (sc-select-attribution) | |
1913 | |
1914 ;; cite the region, but first check the value of sc-cite-region-limit | |
1915 (let ((linecnt (count-lines point mark))) | |
1916 (and sc-cite-region-limit | |
1917 (if (or (not (numberp sc-cite-region-limit)) | |
1918 (<= linecnt sc-cite-region-limit)) | |
1919 (progn | |
1920 ;; cite the region and insert the header rewrite | |
1921 (sc-cite-region point mark) | |
1922 (goto-char point) | |
1923 (let ((sc-eref-style (or sc-preferred-header-style 0))) | |
1924 (if sc-electric-references-p | |
1925 (sc-electric-mode sc-eref-style) | |
1926 (sc-eref-insert-selected t)))) | |
1927 (beep) | |
1928 (message | |
1929 "Region not cited. %d lines exceeds sc-cite-region-limit: %d" | |
1930 linecnt sc-cite-region-limit)))) | |
1931 | |
1932 ;; finally, free the point-marker | |
1933 (set-marker point nil) | |
92814
31a0ecf62949
Remove the `function' in `(function (lambda'.
Glenn Morris <rgm@gnu.org>
parents:
92543
diff
changeset
|
1934 (set-marker mark nil)) |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1935 (run-hooks 'sc-post-hook)) |
4850 | 1936 |
1937 | |
1938 ;; ====================================================================== | |
1939 ;; bug reporting and miscellaneous commands | |
1940 | |
1941 (defun sc-open-line (arg) | |
1942 "Like `open-line', but insert the citation prefix at the front of the line. | |
1943 With numeric ARG, inserts that many new lines." | |
1944 (interactive "p") | |
1945 (save-excursion | |
1946 (let ((start (point)) | |
1947 (prefix (or (progn (beginning-of-line) | |
1948 (if (looking-at (sc-cite-regexp)) | |
51174
26b66dee5902
Use `push' and replace `regi-pos' by equivalents.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
50759
diff
changeset
|
1949 (match-string 0))) |
4850 | 1950 ""))) |
1951 (goto-char start) | |
1952 (open-line arg) | |
1953 (forward-line 1) | |
1954 (while (< 0 arg) | |
1955 (insert prefix) | |
1956 (forward-line 1) | |
92244 | 1957 (setq arg (1- arg)))))) |
4850 | 1958 |
1959 (defun sc-insert-citation (arg) | |
1960 "Insert citation string at beginning of current line if not already cited. | |
1961 With `\\[universal-argument]' insert citation even if line is already | |
1962 cited." | |
1963 (interactive "P") | |
1964 (save-excursion | |
1965 (beginning-of-line) | |
1966 (if (or (not (looking-at (sc-cite-regexp))) | |
1967 (looking-at "^[ \t]*$") | |
1968 (consp arg)) | |
1969 (insert (sc-mail-field "sc-citation")) | |
38436
b174db545cfd
Some fixes to follow coding conventions.
Pavel Janík <Pavel@Janik.cz>
parents:
28437
diff
changeset
|
1970 (error "Line is already cited")))) |
4850 | 1971 |
102651 | 1972 ;; The argument logic here is crazy. |
57933
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1973 (defun sc-version (message) |
102651 | 1974 "Return the current Supercite version. |
57933
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1975 If MESSAGE is non-nil (interactively, with no prefix argument), |
102651 | 1976 echoes the version in the minibuffer. Otherwise, inserts the |
1977 version at point." | |
102650
316f8efbaeae
Leo <sdl.web at gmail.com> (tiny change)
Glenn Morris <rgm@gnu.org>
parents:
102175
diff
changeset
|
1978 (interactive (list (not current-prefix-arg))) |
86773
91992c60e402
(sc-version): Use emacs-version rather than sc-version.
Glenn Morris <rgm@gnu.org>
parents:
86532
diff
changeset
|
1979 (let ((verstr (format "Using Supercite.el %s" emacs-version))) |
57933
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1980 (if message |
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1981 (message verstr) |
59c9a776a021
(sc-cite-region): Don't use interactive-p. Add arg INTERACTIVE.
Richard M. Stallman <rms@gnu.org>
parents:
57160
diff
changeset
|
1982 (insert "`sc-version' says: " verstr)))) |
4850 | 1983 |
92244 | 1984 (make-obsolete 'sc-version 'emacs-version "23.1") |
1985 | |
4850 | 1986 (defun sc-describe () |
92244 | 1987 "Read the Supercite info node." |
4850 | 1988 (interactive) |
92244 | 1989 (info "(SC)top")) |
1990 | |
92263
90dd1f6122b5
(sc-describe): Fix typos in obsolescence declaration.
Juanma Barranquero <lekktu@gmail.com>
parents:
92244
diff
changeset
|
1991 (make-obsolete 'sc-describe "read the SC manual using `info'." "23.1") |
4850 | 1992 |
86532
c44e4015b517
Delete meaningless header keys.
Glenn Morris <rgm@gnu.org>
parents:
84957
diff
changeset
|
1993 (define-obsolete-function-alias 'sc-submit-bug-report 'report-emacs-bug "23.1") |
4850 | 1994 |
1995 | |
1996 ;; useful stuff | |
1997 (provide 'supercite) | |
1998 (run-hooks 'sc-load-hook) | |
1999 | |
61044
17207b620cf3
(sc-mail-field): Use assoc-string.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
60924
diff
changeset
|
2000 ;; arch-tag: a5d5bfa6-3bd5-4414-8c65-0afc83e45cd3 |
4850 | 2001 ;;; supercite.el ends here |