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