Remove the `function' in `(function (lambda'.
[emacs.git] / lisp / mail / supercite.el
blob2c0e84c5fd6a75915155a735a164b0aa2887ecd3
1 ;;; supercite.el --- minor mode for citing mail and news replies
3 ;; Copyright (C) 1993, 1997, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
6 ;; Author: 1993 Barry A. Warsaw <bwarsaw@python.org>
7 ;; Maintainer: Glenn Morris <rgm@gnu.org>
8 ;; Created: February 1993
9 ;; Keywords: mail, news
11 ;; This file is part of GNU Emacs.
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
15 ;; the Free Software Foundation; either version 3, or (at your option)
16 ;; any later version.
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.
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
26 ;; Boston, MA 02110-1301, USA.
28 ;; LCD Archive Entry
29 ;; supercite|Barry A. Warsaw|supercite-help@python.org
30 ;; |Mail and news reply citation package
31 ;; |1993/09/22 18:58:46|3.1|
33 ;;; Commentary:
35 ;;; Code:
38 (require 'regi)
39 (require 'sendmail) ;; For mail-header-end.
41 ;; start user configuration variables
42 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
44 (defgroup supercite nil
45 "Supercite package."
46 :prefix "sc-"
47 :group 'mail
48 :group 'news)
50 (defgroup supercite-frames nil
51 "Supercite (regi) frames."
52 :prefix "sc-"
53 :group 'supercite)
55 (defgroup supercite-attr nil
56 "Supercite attributions."
57 :prefix "sc-"
58 :group 'supercite)
60 (defgroup supercite-cite nil
61 "Supercite citings."
62 :prefix "sc-"
63 :group 'supercite)
65 (defgroup supercite-hooks nil
66 "Hooking into supercite."
67 :prefix "sc-"
68 :group 'supercite)
70 (defcustom sc-auto-fill-region-p t
71 "If non-nil, automatically fill each paragraph after it has been cited."
72 :type 'boolean
73 :group 'supercite)
75 (defcustom sc-blank-lines-after-headers 1
76 "Number of blank lines to leave after mail headers have been nuked.
77 Set to nil, to use whatever blank lines happen to occur naturally."
78 :type '(choice (const :tag "leave" nil)
79 integer)
80 :group 'supercite)
82 (defcustom sc-citation-leader " "
83 "String comprising first part of a citation."
84 :type 'string
85 :group 'supercite-cite)
87 (defcustom sc-citation-delimiter ">"
88 "String comprising third part of a citation.
89 This string is used in both nested and non-nested citations."
90 :type 'string
91 :group 'supercite-cite)
93 (defcustom sc-citation-separator " "
94 "String comprising fourth and last part of a citation."
95 :type 'string
96 :group 'supercite-cite)
98 (defcustom sc-citation-leader-regexp "[ \t]*"
99 "Regexp describing citation leader for a cited line.
100 This should NOT have a leading `^' character."
101 :type 'regexp
102 :group 'supercite-cite)
104 ;; Nemacs and Mule users note: please see the texinfo manual for
105 ;; suggestions on setting these variables.
106 (defcustom sc-citation-root-regexp "[-._[:alnum:]]*"
107 "Regexp describing variable root part of a citation for a cited line.
108 This should NOT have a leading `^' character. See also
109 `sc-citation-nonnested-root-regexp'."
110 :type 'regexp
111 :group 'supercite-cite)
113 (defcustom sc-citation-nonnested-root-regexp "[-._[:alnum:]]+"
114 "Regexp describing the variable root part of a nested citation.
115 This should NOT have a leading `^' character. This variable is
116 related to `sc-citation-root-regexp' but whereas that variable
117 describes both nested and non-nested citation roots, this variable
118 describes only nested citation roots."
119 :type 'regexp
120 :group 'supercite-cite)
122 (defcustom sc-citation-delimiter-regexp "[>]+"
123 "Regexp describing citation delimiter for a cited line.
124 This should NOT have a leading `^' character."
125 :type 'regexp
126 :group 'supercite-cite)
128 (defcustom sc-citation-separator-regexp "[ \t]*"
129 "Regexp describing citation separator for a cited line.
130 This should NOT have a leading `^' character."
131 :type 'regexp
132 :group 'supercite-cite)
134 (defcustom sc-cite-blank-lines-p nil
135 "If non-nil, put a citation on blank lines."
136 :type 'boolean
137 :group 'supercite-cite)
139 (defcustom sc-cite-frame-alist '()
140 "Alist for frame selection during citing.
141 Each element of this list has the following form:
142 (INFOKEY ((REGEXP . FRAME)
143 (REGEXP . FRAME)
144 (...)))
146 Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular
147 expression to match against the INFOKEY's value. FRAME is
148 a citation frame, or a symbol that represents the name of
149 a variable whose value is a citation frame."
150 :type '(repeat (list symbol (repeat (cons regexp
151 (choice (repeat (repeat sexp))
152 symbol)))))
153 :group 'supercite-frames)
154 (put 'sc-cite-frame-alist 'risky-local-variable t)
156 (defcustom sc-uncite-frame-alist '()
157 "Alist for frame selection during unciting.
158 See the variable `sc-cite-frame-alist' for details."
159 :type '(repeat (list symbol (repeat (cons regexp
160 (choice (repeat (repeat sexp))
161 symbol)))))
162 :group 'supercite-frames)
163 (put 'sc-uncite-frame-alist 'risky-local-variable t)
165 (defcustom sc-recite-frame-alist '()
166 "Alist for frame selection during reciting.
167 See the variable `sc-cite-frame-alist' for details."
168 :type '(repeat (list symbol (repeat (cons regexp
169 (choice (repeat (repeat sexp))
170 symbol)))))
171 :group 'supercite-frames)
172 (put 'sc-recite-frame-alist 'risky-local-variable t)
174 (defcustom sc-default-cite-frame
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 "\\)"
185 (sc-cite-regexp
186 sc-citation-nonnested-root-regexp)))))
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.
213 (end (sc-fill-if-different "")))
214 "Default REGI frame for citing a region."
215 :type '(repeat (repeat sexp))
216 :group 'supercite-frames)
217 (put 'sc-default-cite-frame 'risky-local-variable t)
219 (defcustom sc-default-uncite-frame
220 '(;; do nothing on a blank line
221 ("^[ \t]*$" nil)
222 ;; if the line is cited, uncite it
223 ((sc-cite-regexp) (sc-uncite-line)))
224 "Default REGI frame for unciting a region."
225 :type '(repeat (repeat sexp))
226 :group 'supercite-frames)
227 (put 'sc-default-uncite-frame 'risky-local-variable t)
229 (defcustom sc-default-recite-frame
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.
239 (end (sc-fill-if-different "")))
240 "Default REGI frame for reciting a region."
241 :type '(repeat (repeat sexp))
242 :group 'supercite-frames)
243 (put 'sc-default-recite-frame 'risky-local-variable t)
245 (defcustom sc-cite-region-limit t
246 "This variable controls automatic citation of yanked text.
247 Valid values are:
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
255 `count-lines'.
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
260 during the initial citing via `sc-cite-original'."
261 :type '(choice (const :tag "do not cite" nil)
262 (integer :tag "citation threshold")
263 (other :tag "always cite" t))
264 :group 'supercite-cite)
266 (defcustom sc-confirm-always-p t
267 "If non-nil, always confirm attribution string before citing text body."
268 :type 'boolean
269 :group 'supercite-attr)
271 (defcustom sc-default-attribution "Anon"
272 "String used when author's attribution cannot be determined."
273 :type 'string
274 :group 'supercite-attr)
275 (defcustom sc-default-author-name "Anonymous"
276 "String used when author's name cannot be determined."
277 :type 'string
278 :group 'supercite-attr)
279 (defcustom sc-downcase-p nil
280 "Non-nil means downcase the attribution and citation strings."
281 :type 'boolean
282 :group 'supercite-attr
283 :group 'supercite-cite)
284 (defcustom sc-electric-circular-p t
285 "If non-nil, treat electric references as circular."
286 :type 'boolean
287 :group 'supercite-attr)
289 (defcustom sc-electric-mode-hook nil
290 "Hook for `sc-electric-mode' electric references mode."
291 :type 'hook
292 :group 'supercite-hooks)
293 (defcustom sc-electric-references-p nil
294 "Use electric references if non-nil."
295 :type 'boolean
296 :group 'supercite)
298 (defcustom sc-fixup-whitespace-p nil
299 "If non-nil, delete all leading white space before citing."
300 :type 'boolean
301 :group 'supercite)
303 (defcustom sc-load-hook nil
304 "Hook which gets run once after Supercite loads."
305 :type 'hook
306 :group 'supercite-hooks)
307 (defcustom sc-pre-hook nil
308 "Hook which gets run before each invocation of `sc-cite-original'."
309 :type 'hook
310 :group 'supercite-hooks)
311 (defcustom sc-post-hook nil
312 "Hook which gets run after each invocation of `sc-cite-original'."
313 :type 'hook
314 :group 'supercite-hooks)
316 (defcustom sc-mail-warn-if-non-rfc822-p t
317 "Warn if mail headers don't conform to RFC822."
318 :type 'boolean
319 :group 'supercite-attr)
320 (defcustom sc-mumble ""
321 "Value returned by `sc-mail-field' if field isn't in mail headers."
322 :type 'string
323 :group 'supercite-attr)
325 (defcustom sc-name-filter-alist
326 '(("^\\(Mr\\|Mrs\\|Ms\\|Dr\\)[.]?$" . 0)
327 ("^\\(Jr\\|Sr\\)[.]?$" . last)
328 ("^ASTS$" . 0)
329 ("^[I]+$" . last))
330 "Name list components which are filtered out as noise.
331 This variable contains an association list where each element is of
332 the form: (REGEXP . POSITION).
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
338 list and `any' to match all elements."
339 :type '(repeat (cons regexp (choice (const last) (const any)
340 (integer :tag "position"))))
341 :group 'supercite-attr)
343 (defcustom sc-nested-citation-p nil
344 "Controls whether to use nested or non-nested citation style.
345 Non-nil uses nested citations, nil uses non-nested citations."
346 :type 'boolean
347 :group 'supercite)
349 (defcustom sc-nuke-mail-headers 'all
350 "Controls mail header nuking.
351 Used in conjunction with `sc-nuke-mail-header-list'. Valid values are:
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'
356 `keep' -- keep headers specified in `sc-nuke-mail-header-list'"
357 :type '(choice (const all) (const none)
358 (const specified) (const keep))
359 :group 'supercite)
361 (defcustom sc-nuke-mail-header-list nil
362 "List of mail header regexps to remove or keep in body of reply.
363 This list contains regular expressions describing the mail headers to
364 keep or nuke, depending on the value of `sc-nuke-mail-headers'."
365 :type '(repeat regexp)
366 :group 'supercite)
368 (defcustom sc-preferred-attribution-list
369 '("sc-lastchoice" "x-attribution" "firstname" "initials" "lastname")
370 "Specifies what to use as the attribution string.
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.
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\"
385 \(see below).
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'.
392 Barring error conditions, the following preferences are always present
393 in the attribution alist:
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
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
406 associated with the key \"middlenames\"."
407 :type '(repeat string)
408 :group 'supercite-attr)
410 (defcustom sc-attrib-selection-list nil
411 "An alist for selecting preferred attribution based on mail headers.
412 Each element of this list has the following form:
414 (INFOKEY ((REGEXP . ATTRIBUTION)
415 (REGEXP . ATTRIBUTION)
416 (...)))
418 Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular
419 expression to match against the INFOKEY's value. ATTRIBUTION can be a
420 string or a list. If it's a string, then it is the attribution that is
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
425 to be consulted during attribution selection."
426 :type '(repeat (list string
427 (repeat (cons regexp
428 (choice (sexp :tag "List to eval")
429 string)))))
430 :group 'supercite-attr)
431 (put 'sc-attrib-selection-list 'risky-local-variable t)
433 (defcustom sc-attribs-preselect-hook nil
434 "Hook to run before selecting an attribution."
435 :type 'hook
436 :group 'supercite-attr
437 :group 'supercite-hooks)
438 (defcustom sc-attribs-postselect-hook nil
439 "Hook to run after selecting an attribution, but before confirmation."
440 :type 'hook
441 :group 'supercite-attr
442 :group 'supercite-hooks)
444 (defcustom sc-pre-cite-hook nil
445 "Hook to run before citing a region of text."
446 :type 'hook
447 :group 'supercite-cite
448 :group 'supercite-hooks)
449 (defcustom sc-pre-uncite-hook nil
450 "Hook to run before unciting a region of text."
451 :type 'hook
452 :group 'supercite-cite
453 :group 'supercite-hooks)
454 (defcustom sc-pre-recite-hook nil
455 "Hook to run before reciting a region of text."
456 :type 'hook
457 :group 'supercite-cite
458 :group 'supercite-hooks)
460 (defcustom sc-preferred-header-style 4
461 "Index into `sc-rewrite-header-list' specifying preferred header style.
462 Index zero accesses the first function in the list."
463 :type 'integer
464 :group 'supercite)
466 (defcustom sc-reference-tag-string ">>>>> "
467 "String used at the beginning of built-in reference headers."
468 :type 'string
469 :group 'supercite)
471 (defcustom sc-rewrite-header-list
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)
479 (sc-no-blank-line-or-header))
480 "List of reference header rewrite functions.
481 The variable `sc-preferred-header-style' controls which function in
482 this list is chosen for automatic reference header insertions.
483 Electric reference mode will cycle through this list of functions."
484 :type '(repeat sexp)
485 :group 'supercite)
486 (put 'sc-rewrite-header-list 'risky-local-variable t)
488 (defcustom sc-titlecue-regexp "\\s +-+\\s +"
489 "Regular expression describing the separator between names and titles.
490 Set to nil to treat entire field as a name."
491 :type '(choice (const :tag "entire field as name" nil)
492 regexp)
493 :group 'supercite-attr)
495 (defcustom sc-use-only-preference-p nil
496 "Controls what happens when the preferred attribution cannot be found.
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
499 string."
500 :type 'boolean
501 :group 'supercite-attr)
503 (defcustom sc-mode-map-prefix "\C-c\C-p"
504 "Key binding to install Supercite keymap."
505 :type 'string
506 :group 'supercite)
508 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
509 ;; end user configuration variables
511 (define-obsolete-variable-alias 'sc-version 'emacs-version "23.1")
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.")
518 (defvar sc-tmp-nested-regexp nil
519 "Temporary regexp describing nested citations.")
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.")
525 (make-variable-buffer-local 'sc-mail-info)
526 (make-variable-buffer-local 'sc-attributions)
529 ;; ======================================================================
530 ;; supercite keymaps
532 (defvar sc-T-keymap
533 (let ((map (make-sparse-keymap)))
534 (define-key map "a" 'sc-S-preferred-attribution-list)
535 (define-key map "b" 'sc-T-mail-nuke-blank-lines)
536 (define-key map "c" 'sc-T-confirm-always)
537 (define-key map "d" 'sc-T-downcase)
538 (define-key map "e" 'sc-T-electric-references)
539 (define-key map "f" 'sc-T-auto-fill-region)
540 (define-key map "h" 'sc-T-describe)
541 (define-key map "l" 'sc-S-cite-region-limit)
542 (define-key map "n" 'sc-S-mail-nuke-mail-headers)
543 (define-key map "N" 'sc-S-mail-header-nuke-list)
544 (define-key map "o" 'sc-T-electric-circular)
545 (define-key map "p" 'sc-S-preferred-header-style)
546 (define-key map "s" 'sc-T-nested-citation)
547 (define-key map "u" 'sc-T-use-only-preferences)
548 (define-key map "w" 'sc-T-fixup-whitespace)
549 (define-key map "?" 'sc-T-describe)
550 map)
551 "Keymap for sub-keymap of setting and toggling functions.")
553 (defvar sc-mode-map
554 (let ((map (make-sparse-keymap)))
555 (define-key map "c" 'sc-cite-region)
556 (define-key map "f" 'sc-mail-field-query)
557 (define-key map "g" 'sc-mail-process-headers)
558 (define-key map "h" 'sc-describe)
559 (define-key map "i" 'sc-insert-citation)
560 (define-key map "o" 'sc-open-line)
561 (define-key map "r" 'sc-recite-region)
562 (define-key map "\C-p" 'sc-raw-mode-toggle)
563 (define-key map "u" 'sc-uncite-region)
564 (define-key map "v" 'sc-version)
565 (define-key map "w" 'sc-insert-reference)
566 (define-key map "\C-t" sc-T-keymap)
567 (define-key map "\C-b" 'sc-submit-bug-report)
568 (define-key map "?" 'sc-describe)
569 map)
570 "Keymap for Supercite quasi-mode.")
572 (defvar sc-electric-mode-map
573 (let ((map (make-sparse-keymap)))
574 (define-key map "p" 'sc-eref-prev)
575 (define-key map "n" 'sc-eref-next)
576 (define-key map "s" 'sc-eref-setn)
577 (define-key map "j" 'sc-eref-jump)
578 (define-key map "x" 'sc-eref-abort)
579 (define-key map "q" 'sc-eref-abort)
580 (define-key map "\r" 'sc-eref-exit)
581 (define-key map "\n" 'sc-eref-exit)
582 (define-key map "g" 'sc-eref-goto)
583 (define-key map "?" 'describe-mode)
584 (define-key map "\C-h" 'describe-mode)
585 (define-key map [f1] 'describe-mode)
586 (define-key map [help] 'describe-mode)
587 map)
588 "Keymap for `sc-electric-mode' electric references mode.")
591 (defvar sc-minibuffer-local-completion-map
592 (let ((map (copy-keymap minibuffer-local-completion-map)))
593 (define-key map "\C-t" 'sc-toggle-fn)
594 (define-key map " " 'self-insert-command)
595 map)
596 "Keymap for minibuffer confirmation of attribution strings.")
598 (defvar sc-minibuffer-local-map
599 (let ((map (copy-keymap minibuffer-local-map)))
600 (define-key map "\C-t" 'sc-toggle-fn)
601 map)
602 "Keymap for minibuffer confirmation of attribution strings.")
605 ;; ======================================================================
606 ;; utility functions
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
618 (mapconcat (lambda (elt) (car elt)) alist ", ")
619 "? ("
620 (mapconcat
621 (lambda (elt) (char-to-string (cdr elt))) alist "/")
622 ") "))
623 (p prompt)
624 (event
625 (if (fboundp 'allocate-event)
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)
632 (setq event (read-event))
633 (prog1 quit-flag (setq quit-flag nil)))
634 (progn
635 (message "%s%s" p (single-key-description event))
636 (if (fboundp 'deallocate-event)
637 (deallocate-event event))
638 (setq quit-flag nil)
639 (signal 'quit '())))
640 (let ((char
641 (if (featurep 'xemacs)
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)))
652 ((if (fboundp 'button-release-event-p)
653 (button-release-event-p event)) ; ignore them
654 nil)
656 (message "%s%s" p (single-key-description event))
657 (if (featurep 'xemacs)
658 (ding nil 'y-or-n-p)
659 (ding))
660 (discard-input)
661 (if (eq p prompt)
662 (setq p (concat "Try again. " prompt)))))))
663 (if (fboundp 'deallocate-event)
664 (deallocate-event event))
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))
675 (mlist (cadr elem)))
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
682 (setq rtnvalue thing
683 mlist nil
684 alist nil)
685 ;; else we didn't find a match
686 (setq mlist (cdr mlist))))) ;end of mlist loop
687 (setq alist (cdr alist)))) ;end of alist loop
688 rtnvalue))
691 ;; ======================================================================
692 ;; extract mail field information from headers in reply buffer
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.")
712 (put 'sc-mail-glom-frame 'risky-local-variable t)
714 (defvar curline) ; dynamic bondage
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)
722 (let* ((key (downcase (match-string-no-properties 1 curline)))
723 (val (match-string-no-properties 2 curline))
724 (keyval (cons key val)))
725 (push keyval sc-mail-info)
726 (if attribs-p
727 (push keyval sc-attributions))))
728 nil)
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))
734 (setcdr keyval (concat (cdr keyval) " "
735 (match-string-no-properties 1 curline)))))
736 nil)
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)
748 ;; mail header nuking
749 (defvar sc-mail-last-header-nuked-p nil
750 "True if the last header was nuked.")
752 (defun sc-mail-nuke-line ()
753 "Nuke the current mail header line."
754 (delete-region (line-beginning-position) (line-beginning-position 2))
755 '((step . -1)))
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))
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)))
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]*$")
778 (delete-region (line-beginning-position)
779 (line-beginning-position 2)))
780 (insert-char ?\n sc-blank-lines-after-headers)))
781 nil)
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))
797 (t (error "Invalid value for sc-nuke-mail-headers: %s"
798 sc-nuke-mail-headers))) ; end-cond
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)))
807 (and every-func (list (list 'every every-func))))))
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)
828 sc-mail-headers-start sc-mail-headers-end))))
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."
836 (or (cdr (assoc-string field sc-mail-info 'case-fold)) sc-mumble))
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)
848 (setq key (completing-read
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
862 (if (not (member (cdr keyval)
863 sc-mail-field-modification-history))
864 (setq sc-mail-field-modification-history
865 (cons (cdr keyval) sc-mail-field-modification-history)))
866 (setcdr keyval (read-string
867 (concat key ": ") (cdr keyval)
868 'sc-mail-field-modification-history))))
869 ((eq action ?a)
870 (push (cons key (read-string (concat key ": "))) sc-mail-info))))))
873 ;; ======================================================================
874 ;; attributions
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.")
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''."
887 (and (string-match (concat "[-[:alnum:]_.]+" delim) from 0)
888 (substring from
889 (match-beginning 0)
890 (- (match-end 0) (if (null delim) 0 1)))))
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))
896 (mstart (string-match "![-[:alnum:]_.]+\\([^-![:alnum:]_.]\\|$\\)"
897 from 0))
898 (mend (match-end 0)))
899 (and mstart
900 (substring from (1+ mstart) (- mend (if (= mend eos) 0 1))))))
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)
906 (match-string 1 from)))
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)))
912 (if (string-match (concat "\\`\"?" (regexp-quote author)
913 "\"?\\s +") from 0)
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))
919 (if (string-match "[-[:alnum:]!@%._]+" from 0)
920 (match-string 0 from)
921 ""))))
923 (defun sc-attribs-emailname (from)
924 "Get the email terminus name from FROM."
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)))
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
941 (or (string-match sc-titlecue-regexp string sos) eos)))))
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."
946 ;; FIXME: we probably should use mail-extract-address-components.
947 (let ((namestring
949 ;; If there is a <...> in the name,
950 ;; treat everything before that as the full name.
951 ;; Even if it contains parens, use the whole thing.
952 ;; On the other hand, we do look for quotes in the usual way.
953 (and (string-match " *<.*>" from 0)
954 (let ((before-angles
955 (sc-name-substring from 0 (match-beginning 0) 0)))
956 (if (string-match "\".*\"" before-angles 0)
957 (sc-name-substring
958 before-angles (match-beginning 0) (match-end 0) 1)
959 before-angles)))
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
965 from (string-match "\\([-.[:alnum:]_]+\\s +\\)+<" from 0)
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))))))
980 (defun sc-attribs-chop-namestring (namestring)
981 "Convert NAMESTRING to a list of names.
982 example: (sc-attribs-chop-namestring \"John Xavier Doe\")
983 => (\"John\" \"Xavier\" \"Doe\")"
984 (if (string-match "\\([ \t]*\\)\\([^ \t._]+\\)\\([ \t]*\\)" namestring)
985 (cons (match-string 2 namestring)
986 (sc-attribs-chop-namestring (substring namestring (match-end 3))))))
988 (defun sc-attribs-strip-initials (namelist)
989 "Extract the author's initials from the NAMELIST."
990 (mapconcat
991 (lambda (name)
992 (if (< 0 (length name))
993 (substring name 0 1)))
994 namelist ""))
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)
1001 (string (or string (buffer-substring (line-beginning-position)
1002 (line-end-position))))
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))
1008 (setq attribution (match-string 0 string)
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)))
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)
1020 (mapc
1021 (lambda (name)
1022 (setq position (1+ position))
1023 (let ((keep-p t))
1024 (mapc
1025 (function
1026 (lambda (filter)
1027 (let ((regexp (car filter))
1028 (pos (cdr filter)))
1029 (if (and (string-match regexp name)
1030 (or (and (numberp pos)
1031 (= pos position))
1032 (and (eq pos 'last)
1033 (= position (1- elements)))
1034 (eq pos 'any)))
1035 (setq keep-p nil)))))
1036 sc-name-filter-alist)
1037 (if keep-p
1038 (setq keepers (cons position keepers)))))
1039 namelist)
1040 (mapc
1041 (lambda (position)
1042 (setq filtered-list (cons (nth position namelist) filtered-list)))
1043 keepers)
1044 filtered-list))
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)))
1051 (let* ((sc-mumble "")
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)
1064 ;; put basic information
1065 (setq
1066 ;; put middle names and build sc-author entry
1067 middlenames (mapconcat
1068 (lambda (midname)
1069 (let ((key-attribs (format "middlename-%d" n))
1070 (key-mail (format "sc-middlename-%d" n)))
1071 (push (cons key-attribs midname) sc-attributions)
1072 (push (cons key-mail midname) sc-mail-info)
1073 (setq n (1+ n))
1074 midname))
1075 midnames " ")
1077 author (concat firstname " " middlenames (and midnames " ") lastname)
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")
1102 namestring)))
1103 sc-mail-info)))
1104 ;; from string is empty
1105 (push (cons "sc-author" sc-default-author-name) sc-mail-info)))
1107 (defvar sc-attrib-or-cite nil
1108 "Used to toggle between attribution input or citation input.")
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))
1117 (defun sc-select-attribution ()
1118 "Select an attribution from `sc-attributions'.
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'.
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))
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)
1158 (setq attribution (eval attrib))
1159 (if (stringp attribution)
1160 (setq attriblist nil)
1161 (setq attribution nil
1162 attriblist (cdr attriblist))))
1163 (t (error "%s did not evaluate to a string or list!"
1164 "sc-attrib-selection-list")))))
1165 ((setq attribution (cdr (assoc preferred sc-attributions)))
1166 (setq attriblist nil))
1168 (setq attriblist (cdr attriblist))))))
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)))))
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))
1195 ;; create the attribution prefix
1196 (setq citation (sc-make-citation attribution))
1198 ;; run the post selection hook before querying the user
1199 (run-hooks 'sc-attribs-postselect-hook)
1201 ;; query for confirmation
1202 (if query-p
1203 (let* ((query-alist (mapcar (lambda (entry) (list (cdr entry)))
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
1214 (progn
1215 (setq choice
1216 (if sc-attrib-or-cite
1217 (read-string
1218 "Enter citation prefix: "
1219 citation
1220 'sc-citation-confirmation-history)
1221 (completing-read
1222 "Complete attribution name: "
1223 query-alist nil nil
1224 (cons initial 0)
1225 'sc-attribution-confirmation-history)))
1226 nil)))
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))
1234 (setq citation (sc-make-citation choice)
1235 attribution choice))))
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)))
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)
1250 (push (cons ckey citation) sc-mail-info))
1251 (if akeyval
1252 (setcdr akeyval attribution)
1253 (push (cons akey attribution) sc-mail-info)))
1255 ;; set the sc-lastchoice attribution
1256 (let* ((lkey "sc-lastchoice")
1257 (lastchoice (assoc lkey sc-attributions)))
1258 (if lastchoice
1259 (setcdr lastchoice attribution)
1260 (push (cons lkey attribution) sc-attributions)))))
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...
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))
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))
1286 (defvar filladapt-prefix-table)
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))))
1297 ;; ======================================================================
1298 ;; citing and unciting regions of text
1300 (defvar sc-fill-begin 1
1301 "Buffer position to begin filling.")
1302 (defvar sc-fill-line-prefix ""
1303 "Fill prefix of previous line")
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 ""
1314 sc-fill-begin (line-beginning-position))
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 ""))
1319 (fill-region sc-fill-begin (line-beginning-position)))
1320 (setq sc-fill-line-prefix prefix
1321 sc-fill-begin (line-beginning-position)))))
1322 nil)
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))
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))
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)
1354 (string (or string (buffer-substring (line-beginning-position)
1355 (line-end-position))))
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))
1361 (setq nesting (match-string 0 string)
1362 start (match-end 0))
1363 (= start (or (string-match sc-citation-separator-regexp string start) -1))
1364 nesting)))
1366 (defun sc-add-citation-level ()
1367 "Add a citation level for nested citation style w/ coercion."
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)))
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)
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)
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)
1406 ;; interactive functions
1407 (defun sc-cite-region (start end &optional confirm-p interactive)
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
1411 `sc-pre-cite-hook'.
1413 When called interactively, the optional arg INTERACTIVE is non-nil,
1414 and that means call `sc-select-attribution' too."
1415 (interactive "r\nP\np")
1416 (undo-boundary)
1417 (let ((frame (sc-scan-info-alist sc-cite-frame-alist))
1418 (sc-confirm-always-p (if confirm-p t sc-confirm-always-p)))
1419 (if (and frame (symbolp frame))
1420 (setq frame (symbol-value frame)))
1421 (or frame (setq frame sc-default-cite-frame))
1422 (run-hooks 'sc-pre-cite-hook)
1423 (if interactive
1424 (sc-select-attribution))
1425 (regi-interpret frame start end)))
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)
1432 (let ((frame (sc-scan-info-alist sc-uncite-frame-alist)))
1433 (if (and frame (symbolp frame))
1434 (setq frame (symbol-value frame)))
1435 (or frame (setq frame sc-default-uncite-frame))
1436 (run-hooks 'sc-pre-uncite-hook)
1437 (regi-interpret frame start end)))
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)
1446 (let ((frame (sc-scan-info-alist sc-recite-frame-alist)))
1447 (if (and frame (symbolp frame))
1448 (setq frame (symbol-value frame)))
1449 (or frame (setq frame sc-default-recite-frame))
1450 (run-hooks 'sc-pre-recite-hook)
1451 (regi-interpret frame start end)))
1454 ;; ======================================================================
1455 ;; building headers
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) "")))
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")))
1473 (defun sc-no-header ()
1474 "Does nothing. Use this instead of nil to get a blank header."
1477 (defun sc-no-blank-line-or-header()
1478 "Similar to `sc-no-header' except it removes the preceding blank line."
1479 (if (not (bobp))
1480 (if (and (eolp)
1481 (progn (forward-line -1)
1482 (or (= (point) (mail-header-end))
1483 (and (eq major-mode 'mh-letter-mode)
1484 (with-no-warnings
1485 (mh-in-header-p))))))
1486 (progn (forward-line)
1487 (let ((kill-lines-magic t))
1488 (kill-line))))))
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"))))
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"))))
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"))))
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)
1533 " writes:\n"))))
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"))))
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")
1570 " for more details)\n")))))
1573 ;; ======================================================================
1574 ;; header rewrites
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.")
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))
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))))
1599 (or nomsg (message "Ref header %d [%d line%s]: %s"
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)"
1606 (cadr err) sc-eref-style)
1607 (beep))))))
1609 (defun sc-electric-mode (&optional arg)
1611 Mode for viewing Supercite reference headers. Commands are:
1612 \n\\{sc-electric-mode-map}
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."
1620 (let ((info sc-mail-info))
1622 (setq sc-eref-style
1623 (or (sc-valid-index-p arg)
1624 (sc-valid-index-p sc-preferred-header-style)
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)
1639 (run-mode-hooks 'sc-electric-mode-hook)
1640 (recursive-edit))))
1642 (and sc-eref-style
1643 (sc-eref-insert-selected))
1644 (kill-buffer sc-electric-bufname)))
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
1661 (progn (error msg "follow") (1- last))))))
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
1677 (shrink-window (- winlines (max hdrlines
1678 window-min-height))))))))))
1680 (defun sc-eref-next ()
1681 "Display next reference in other buffer."
1682 (interactive)
1683 (sc-eref-show (1+ sc-eref-style)))
1685 (defun sc-eref-prev ()
1686 "Display previous reference in other buffer."
1687 (interactive)
1688 (sc-eref-show (1- sc-eref-style)))
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))
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])"
1704 refnum 0 (1- (length sc-rewrite-header-list)))))
1706 (defun sc-eref-jump ()
1707 "Set reference header to preferred header."
1708 (interactive)
1709 (sc-eref-show sc-preferred-header-style))
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))
1717 (defun sc-eref-exit ()
1718 "Exit from electric reference mode and insert selected reference."
1719 (interactive)
1720 (exit-recursive-edit))
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'.
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)
1740 (sc-eref-insert-selected t)))))
1743 ;; ======================================================================
1744 ;; variable toggling
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))
1752 (force-mode-line-update))
1754 (defun sc-toggle-var (variable)
1755 "Boolean toggle VARIABLE's value.
1756 VARIABLE must be a bound symbol. nil values change to t, non-nil
1757 values are changed to nil."
1758 (message "%s changed from %s to %s"
1759 variable (symbol-value variable)
1760 (set variable (not (symbol-value variable)))))
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.
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."
1773 (let* ((minibuffer-help-form '(funcall myhelp))
1774 (myhelp
1775 (lambda ()
1776 (with-output-to-temp-buffer "*Help*"
1777 (prin1 var)
1778 (if (boundp var)
1779 (let ((print-length 20))
1780 (princ "\t(Current value: ")
1781 (prin1 (symbol-value var))
1782 (princ ")")))
1783 (princ "\n\nDocumentation:\n")
1784 (princ (substring (documentation-property
1786 'variable-documentation)
1788 (with-current-buffer standard-output
1789 (help-mode))
1790 nil))))
1791 (set var (eval-minibuffer (format "Set %s to value: " var)))))
1793 (defmacro sc-toggle-symbol (rootname)
1794 `(defun ,(intern (concat "sc-T-" rootname)) ()
1795 (interactive)
1796 (sc-toggle-var ',(intern (concat "sc-" rootname "-p")))))
1798 (defmacro sc-setvar-symbol (rootname)
1799 `(defun ,(intern (concat "sc-S-" rootname)) ()
1800 (interactive)
1801 (sc-set-variable ',(intern (concat "sc-" rootname)))))
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")
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")
1819 (defun sc-T-describe ()
1822 Supercite provides a number of key bindings which simplify the process
1823 of setting or toggling certain variables controlling its operation.
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.
1830 \\{sc-T-keymap}"
1831 (interactive)
1832 (describe-function 'sc-T-describe))
1835 ;; ======================================================================
1836 ;; published interface to mail and news readers
1838 (define-minor-mode sc-minor-mode
1839 "Supercite minor mode."
1840 :group 'supercite
1841 :lighter (" SC" (sc-auto-fill-region-p
1842 (":f" (sc-fixup-whitespace-p "w"))
1843 (sc-fixup-whitespace-p ":w")))
1844 :keymap `((,sc-mode-map-prefix . ,sc-mode-map)))
1846 ;;;###autoload
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
1850 function according to the agreed upon standard. See the associated
1851 info node `(SC)Top' for more details.
1852 `sc-cite-original' does not do any yanking of the
1853 original message but it does require a few things:
1855 1) The reply buffer is the current buffer.
1857 2) The original message has been yanked and inserted into the
1858 reply buffer.
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.
1864 4) Point is at the beginning of the verbose headers.
1866 5) Mark is at the end of the body of text to be cited.
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."
1871 (run-hooks 'sc-pre-hook)
1873 (sc-minor-mode 1)
1875 (undo-boundary)
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
1880 (let* ((zmacs-regions nil) ; for XEemacs
1881 (mark-active t) ; for Emacs
1882 (point (point-marker))
1883 (mark (copy-marker (mark-marker))))
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)))
1892 ;; first process mail headers, and populate sc-mail-info
1893 (sc-mail-process-headers point mark)
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)
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))))
1921 ;; finally, free the point-marker
1922 (set-marker point nil)
1923 (set-marker mark nil))
1924 (run-hooks 'sc-post-hook))
1927 ;; ======================================================================
1928 ;; bug reporting and miscellaneous commands
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))
1938 (match-string 0)))
1939 "")))
1940 (goto-char start)
1941 (open-line arg)
1942 (forward-line 1)
1943 (while (< 0 arg)
1944 (insert prefix)
1945 (forward-line 1)
1946 (setq arg (1- arg))))))
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"))
1959 (error "Line is already cited"))))
1961 (defun sc-version (message)
1962 "Echo the current version of Supercite in the minibuffer.
1963 If MESSAGE is non-nil (interactively, with no prefix argument),
1964 inserts the version string in the current buffer instead."
1965 (interactive (not current-prefix-arg))
1966 (let ((verstr (format "Using Supercite.el %s" emacs-version)))
1967 (if message
1968 (message verstr)
1969 (insert "`sc-version' says: " verstr))))
1971 (make-obsolete 'sc-version 'emacs-version "23.1")
1973 (defun sc-describe ()
1974 "Read the Supercite info node."
1975 (interactive)
1976 (info "(SC)top"))
1978 (make-obsolete 'sc-describe "read the SC manual using `info'." "23.1")
1980 (define-obsolete-function-alias 'sc-submit-bug-report 'report-emacs-bug "23.1")
1983 ;; useful stuff
1984 (provide 'supercite)
1985 (run-hooks 'sc-load-hook)
1987 ;; arch-tag: a5d5bfa6-3bd5-4414-8c65-0afc83e45cd3
1988 ;;; supercite.el ends here