1 ;;; supercite.el --- minor mode for citing mail and news replies
3 ;; Copyright (C) 1993, 1997 Free Software Foundation, Inc.
5 ;; Author: 1993 Barry A. Warsaw, Century Computing, Inc. <bwarsaw@cen.com>
6 ;; Maintainer: Mark Senn <mds@ecn.purdue.edu>
7 ;; Created: February 1993
8 ;; Last Modified: 1993/09/22 18:58:46
9 ;; Keywords: mail, news
11 ;; supercite.el revision: 3.54
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software; you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation; either version 2, or (at your option)
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
28 ;; Boston, MA 02111-1307, USA.
31 ;; supercite|Barry A. Warsaw|supercite-help@python.org
32 ;; |Mail and news reply citation package
33 ;; |1993/09/22 18:58:46|3.1|
39 (require 'sendmail
) ;; For mail-header-end.
41 ;; start user configuration variables
42 ;; vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
44 (defgroup supercite nil
50 (defgroup supercite-frames nil
51 "Supercite (regi) frames"
55 (defgroup supercite-attr nil
56 "Supercite attributions"
60 (defgroup supercite-cite nil
65 (defgroup supercite-hooks nil
66 "Hooking into supercite"
70 (defcustom sc-auto-fill-region-p t
71 "*If non-nil, automatically fill each paragraph after it has been cited."
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
)
82 (defcustom sc-citation-leader
" "
83 "*String comprising first part of a citation."
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."
91 :group
'supercite-cite
)
93 (defcustom sc-citation-separator
" "
94 "*String comprising fourth and last part of a citation."
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."
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'."
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."
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."
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."
132 :group
'supercite-cite
)
134 (defcustom sc-cite-blank-lines-p nil
135 "*If non-nil, put a citation on blank lines."
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)
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 a citation
148 frame, or a variable containing a citation frame."
149 :type
'(repeat (list symbol
(repeat (cons regexp
150 (choice (repeat (repeat sexp
))
152 :group
'supercite-frames
)
154 (defcustom sc-uncite-frame-alist
'()
155 "*Alist for frame selection during unciting.
156 See the variable `sc-cite-frame-alist' for details."
157 :type
'(repeat (list symbol
(repeat (cons regexp
158 (choice (repeat (repeat sexp
))
160 :group
'supercite-frames
)
162 (defcustom sc-recite-frame-alist
'()
163 "*Alist for frame selection during reciting.
164 See the variable `sc-cite-frame-alist' for details."
165 :type
'(repeat (list symbol
(repeat (cons regexp
166 (choice (repeat (repeat sexp
))
168 :group
'supercite-frames
)
170 (defcustom sc-default-cite-frame
171 '(;; initialize fill state and temporary variables when entering
172 ;; frame. this makes things run much faster
174 (sc-fill-if-different)
175 (setq sc-tmp-nested-regexp
(sc-cite-regexp "")
176 sc-tmp-nonnested-regexp
(sc-cite-regexp)
181 (sc-cite-regexp sc-citation-nonnested-root-regexp
))
183 ;; blank lines mean paragraph separators, so fill the last cited
184 ;; paragraph, unless sc-cite-blank-lines-p is non-nil, in which
185 ;; case we treat blank lines just like any other line.
186 ("^[ \t]*$" (if sc-cite-blank-lines-p
188 (sc-fill-if-different "")))
189 ;; do nothing if looking at a reference tag. make sure that the
190 ;; tag string isn't the empty string since this will match every
191 ;; line. it cannot be nil.
192 (sc-reference-tag-string (if (string= sc-reference-tag-string
"")
195 ;; this regexp catches nested citations in which the author cited
196 ;; a non-nested citation with a dumb citer.
197 (sc-tmp-dumb-regexp (sc-cite-coerce-dumb-citer))
198 ;; if we are looking at a nested citation then add a citation level
199 (sc-tmp-nested-regexp (sc-add-citation-level))
200 ;; if we're looking at a non-nested citation, coerce it to our style
201 (sc-tmp-nonnested-regexp (sc-cite-coerce-cited-line))
202 ;; we must be looking at an uncited line. if we are in nested
203 ;; citations, just add a citation level
204 (sc-nested-citation-p (sc-add-citation-level))
205 ;; we're looking at an uncited line and we are in non-nested
206 ;; citations, so cite it with a non-nested citation
208 ;; be sure when we're done that we fill the last cited paragraph.
209 (end (sc-fill-if-different ""))
211 "*Default REGI frame for citing a region."
212 :type
'(repeat (repeat sexp
))
213 :group
'supercite-frames
)
215 (defcustom sc-default-uncite-frame
216 '(;; do nothing on a blank line
218 ;; if the line is cited, uncite it
219 ((sc-cite-regexp) (sc-uncite-line))
221 "*Default REGI frame for unciting a region."
222 :type
'(repeat (repeat sexp
))
223 :group
'supercite-frames
)
225 (defcustom sc-default-recite-frame
226 '(;; initialize fill state when entering frame
227 (begin (sc-fill-if-different))
228 ;; do nothing on a blank line
230 ;; if we're looking at a cited line, recite it
231 ((sc-cite-regexp) (sc-recite-line (sc-cite-regexp)))
232 ;; otherwise, the line is uncited, so just cite it
234 ;; be sure when we're done that we fill the last cited paragraph.
235 (end (sc-fill-if-different ""))
237 "*Default REGI frame for reciting a region."
238 :type
'(repeat (repeat sexp
))
239 :group
'supercite-frames
)
241 (defcustom sc-cite-region-limit t
242 "*This variable controls automatic citation of yanked text.
245 non-nil -- cite the entire region, regardless of its size
246 nil -- do not cite the region at all
247 <integer> -- a number indicating the threshold for citation. When
248 the number of lines in the region is greater than this
249 value, a warning message will be printed and the region
250 will not be cited. Lines in region are counted with
253 The gathering of attribution information is not affected by the value
254 of this variable. The number of lines in the region is calculated
255 *after* all mail headers are removed. This variable is only consulted
256 during the initial citing via `sc-cite-original'."
257 :type
'(choice (const :tag
"do not cite" nil
)
258 (integer :tag
"citation threshold")
259 (other :tag
"always cite" t
))
260 :group
'supercite-cite
)
262 (defcustom sc-confirm-always-p t
263 "*If non-nil, always confirm attribution string before citing text body."
265 :group
'supercite-attr
)
267 (defcustom sc-default-attribution
"Anon"
268 "*String used when author's attribution cannot be determined."
270 :group
'supercite-attr
)
271 (defcustom sc-default-author-name
"Anonymous"
272 "*String used when author's name cannot be determined."
274 :group
'supercite-attr
)
275 (defcustom sc-downcase-p nil
276 "*Non-nil means downcase the attribution and citation strings."
278 :group
'supercite-attr
279 :group
'supercite-cite
)
280 (defcustom sc-electric-circular-p t
281 "*If non-nil, treat electric references as circular."
283 :group
'supercite-attr
)
285 (defcustom sc-electric-mode-hook nil
286 "*Hook for `sc-electric-mode' electric references mode."
288 :group
'supercite-hooks
)
289 (defcustom sc-electric-references-p nil
290 "*Use electric references if non-nil."
294 (defcustom sc-fixup-whitespace-p nil
295 "*If non-nil, delete all leading white space before citing."
299 (defcustom sc-load-hook nil
300 "*Hook which gets run once after Supercite loads."
302 :group
'supercite-hooks
)
303 (defcustom sc-pre-hook nil
304 "*Hook which gets run before each invocation of `sc-cite-original'."
306 :group
'supercite-hooks
)
307 (defcustom sc-post-hook nil
308 "*Hook which gets run after each invocation of `sc-cite-original'."
310 :group
'supercite-hooks
)
312 (defcustom sc-mail-warn-if-non-rfc822-p t
313 "*Warn if mail headers don't conform to RFC822."
315 :group
'supercite-attr
)
316 (defcustom sc-mumble
""
317 "*Value returned by `sc-mail-field' if field isn't in mail headers."
319 :group
'supercite-attr
)
321 (defcustom sc-name-filter-alist
322 '(("^\\(Mr\\|Mrs\\|Ms\\|Dr\\)[.]?$" .
0)
323 ("^\\(Jr\\|Sr\\)[.]?$" . last
)
326 "*Name list components which are filtered out as noise.
327 This variable contains an association list where each element is of
328 the form: (REGEXP . POSITION).
330 REGEXP is a regular expression which matches the name list component.
331 Match is performed using `string-match'. POSITION is the position in
332 the name list which can match the regular expression, starting at zero
333 for the first element. Use `last' to match the last element in the
334 list and `any' to match all elements."
335 :type
'(repeat (cons regexp
(choice (const last
) (const any
)
336 (integer :tag
"position"))))
337 :group
'supercite-attr
)
339 (defcustom sc-nested-citation-p nil
340 "*Controls whether to use nested or non-nested citation style.
341 Non-nil uses nested citations, nil uses non-nested citations."
345 (defcustom sc-nuke-mail-headers
'all
346 "*Controls mail header nuking.
347 Used in conjunction with `sc-nuke-mail-header-list'. Legal values are:
349 `all' -- nuke all mail headers
350 `none' -- don't nuke any mail headers
351 `specified' -- nuke headers specified in `sc-nuke-mail-header-list'
352 `keep' -- keep headers specified in `sc-nuke-mail-header-list'"
353 :type
'(choice (const all
) (const none
)
354 (const specified
) (const keep
))
357 (defcustom sc-nuke-mail-header-list nil
358 "*List of mail header regexps to remove or keep in body of reply.
359 This list contains regular expressions describing the mail headers to
360 keep or nuke, depending on the value of `sc-nuke-mail-headers'."
361 :type
'(repeat regexp
)
364 (defcustom sc-preferred-attribution-list
365 '("sc-lastchoice" "x-attribution" "firstname" "initials" "lastname")
366 "*Specifies what to use as the attribution string.
367 Supercite creates a list of possible attributions when it scans the
368 mail headers from the original message. Each attribution choice is
369 associated with a key in an attribution alist. Supercite tries to
370 pick a \"preferred\" attribution by matching the attribution alist
371 keys against the elements in `sc-preferred-attribution-list' in order.
372 The first non-empty string value found is used as the preferred
375 Note that Supercite now honors the X-Attribution: mail field. If
376 present in the original message, the value of this field should always
377 be used to select the most preferred attribution since it reflects how
378 the original author would like to be distinguished. It should be
379 considered bad taste to put any attribution preference key before
380 \"x-attribution\" in this list, except perhaps for \"sc-lastchoice\"
383 Supercite remembers the last attribution used when reciting an already
384 cited paragraph. This attribution will always be saved with the
385 \"sc-lastchoice\" key, which can be used in this list. Note that the
386 last choice is always reset after every call of `sc-cite-original'.
388 Barring error conditions, the following preferences are always present
389 in the attribution alist:
391 \"emailname\" -- email terminus name
392 \"initials\" -- initials of author
393 \"firstname\" -- first name of author
394 \"lastname\" -- last name of author
395 \"middlename-1\" -- first middle name of author
396 \"middlename-2\" -- second middle name of author
399 Middle name indexes can be any positive integer greater than 0,
400 although it is unlikely that many authors will supply more than one
401 middle name, if that many. The string of all middle names is
402 associated with the key \"middlenames\"."
403 :type
'(repeat string
)
404 :group
'supercite-attr
)
406 (defcustom sc-attrib-selection-list nil
407 "*An alist for selecting preferred attribution based on mail headers.
408 Each element of this list has the following form:
410 (INFOKEY ((REGEXP . ATTRIBUTION)
411 (REGEXP . ATTRIBUTION)
414 Where INFOKEY is a key for `sc-mail-field', REGEXP is a regular
415 expression to match against the INFOKEY's value. ATTRIBUTION can be a
416 string or a list. If its a string, then it is the attribution that is
417 selected by `sc-select-attribution'. If it is a list, it is `eval'd
418 and the return value must be a string, which is used as the selected
419 attribution. Note that the variable `sc-preferred-attribution-list'
420 must contain an element of the string \"sc-consult\" for this variable
421 to be consulted during attribution selection."
422 :type
'(repeat (list string
424 (choice (sexp :tag
"List to eval")
426 :group
'supercite-attr
)
428 (defcustom sc-attribs-preselect-hook nil
429 "*Hook to run before selecting an attribution."
431 :group
'supercite-attr
432 :group
'supercite-hooks
)
433 (defcustom sc-attribs-postselect-hook nil
434 "*Hook to run after selecting an attribution, but before confirmation."
436 :group
'supercite-attr
437 :group
'supercite-hooks
)
439 (defcustom sc-pre-cite-hook nil
440 "*Hook to run before citing a region of text."
442 :group
'supercite-cite
443 :group
'supercite-hooks
)
444 (defcustom sc-pre-uncite-hook nil
445 "*Hook to run before unciting a region of text."
447 :group
'supercite-cite
448 :group
'supercite-hooks
)
449 (defcustom sc-pre-recite-hook nil
450 "*Hook to run before reciting a region of text."
452 :group
'supercite-cite
453 :group
'supercite-hooks
)
455 (defcustom sc-preferred-header-style
4
456 "*Index into `sc-rewrite-header-list' specifying preferred header style.
457 Index zero accesses the first function in the list."
461 (defcustom sc-reference-tag-string
">>>>> "
462 "*String used at the beginning of built-in reference headers."
466 (defcustom sc-rewrite-header-list
469 (sc-header-inarticle-writes)
470 (sc-header-regarding-adds)
471 (sc-header-attributed-writes)
472 (sc-header-author-writes)
474 (sc-no-blank-line-or-header)
476 "*List of reference header rewrite functions.
477 The variable `sc-preferred-header-style' controls which function in
478 this list is chosen for automatic reference header insertions.
479 Electric reference mode will cycle through this list of functions."
483 (defcustom sc-titlecue-regexp
"\\s +-+\\s +"
484 "*Regular expression describing the separator between names and titles.
485 Set to nil to treat entire field as a name."
486 :type
'(choice (const :tag
"entire field as name" nil
)
488 :group
'supercite-attr
)
490 (defcustom sc-use-only-preference-p nil
491 "*Controls what happens when the preferred attribution cannot be found.
492 If non-nil, then `sc-default-attribution' will be used. If nil, then
493 some secondary scheme will be employed to find a suitable attribution
496 :group
'supercite-attr
)
498 ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
499 ;; end user configuration variables
501 (defconst sc-version
"3.1"
502 "Supercite version number.")
503 (defconst sc-help-address
"bug-supercite@gnu.org"
504 "Address accepting submissions of bug reports.")
506 (defvar sc-mail-info nil
507 "Alist of mail header information gleaned from reply buffer.")
508 (defvar sc-attributions nil
509 "Alist of attributions for use when citing.")
511 (defconst sc-emacs-features
515 (string= (substring emacs-version
0 2) "19")
516 (string= (substring emacs-version
0 2) "20"))
518 (if (string-match "Lucid" emacs-version
)
519 (setq flavor
'Lucid
))
521 (list version flavor
))
522 "A list describing what version of Emacs we're running on.
526 Emacs 19 or 20 : (v19 GNU)
527 Lucid 19 or 20 : (v19 Lucid)")
530 (defvar sc-tmp-nested-regexp nil
531 "Temporary regepx describing nested citations.")
532 (defvar sc-tmp-nonnested-regexp nil
533 "Temporary regexp describing non-nested citations.")
534 (defvar sc-tmp-dumb-regexp nil
535 "Temp regexp describing non-nested citation cited with a nesting citer.")
537 (defvar sc-minor-mode nil
538 "Supercite minor mode on flag.")
539 (defvar sc-mode-string
" SC"
540 "Supercite minor mode string.")
542 (make-variable-buffer-local 'sc-mail-info
)
543 (make-variable-buffer-local 'sc-attributions
)
544 (make-variable-buffer-local 'sc-minor-mode
)
547 ;; ======================================================================
550 (defvar sc-mode-map-prefix
"\C-c\C-p"
551 "*Key binding to install Supercite keymap.
552 If this is nil, Supercite keymap is not installed.")
554 (defvar sc-T-keymap
()
555 "Keymap for sub-keymap of setting and toggling functions.")
558 (setq sc-T-keymap
(make-sparse-keymap))
559 (define-key sc-T-keymap
"a" 'sc-S-preferred-attribution-list
)
560 (define-key sc-T-keymap
"b" 'sc-T-mail-nuke-blank-lines
)
561 (define-key sc-T-keymap
"c" 'sc-T-confirm-always
)
562 (define-key sc-T-keymap
"d" 'sc-T-downcase
)
563 (define-key sc-T-keymap
"e" 'sc-T-electric-references
)
564 (define-key sc-T-keymap
"f" 'sc-T-auto-fill-region
)
565 (define-key sc-T-keymap
"h" 'sc-T-describe
)
566 (define-key sc-T-keymap
"l" 'sc-S-cite-region-limit
)
567 (define-key sc-T-keymap
"n" 'sc-S-mail-nuke-mail-headers
)
568 (define-key sc-T-keymap
"N" 'sc-S-mail-header-nuke-list
)
569 (define-key sc-T-keymap
"o" 'sc-T-electric-circular
)
570 (define-key sc-T-keymap
"p" 'sc-S-preferred-header-style
)
571 (define-key sc-T-keymap
"s" 'sc-T-nested-citation
)
572 (define-key sc-T-keymap
"u" 'sc-T-use-only-preferences
)
573 (define-key sc-T-keymap
"w" 'sc-T-fixup-whitespace
)
574 (define-key sc-T-keymap
"?" 'sc-T-describe
)
577 (defvar sc-mode-map
()
578 "Keymap for Supercite quasi-mode.")
581 (setq sc-mode-map
(make-sparse-keymap))
582 (define-key sc-mode-map
"c" 'sc-cite-region
)
583 (define-key sc-mode-map
"f" 'sc-mail-field-query
)
584 (define-key sc-mode-map
"g" 'sc-mail-process-headers
)
585 (define-key sc-mode-map
"h" 'sc-describe
)
586 (define-key sc-mode-map
"i" 'sc-insert-citation
)
587 (define-key sc-mode-map
"o" 'sc-open-line
)
588 (define-key sc-mode-map
"r" 'sc-recite-region
)
589 (define-key sc-mode-map
"\C-p" 'sc-raw-mode-toggle
)
590 (define-key sc-mode-map
"u" 'sc-uncite-region
)
591 (define-key sc-mode-map
"v" 'sc-version
)
592 (define-key sc-mode-map
"w" 'sc-insert-reference
)
593 (define-key sc-mode-map
"\C-t" sc-T-keymap
)
594 (define-key sc-mode-map
"\C-b" 'sc-submit-bug-report
)
595 (define-key sc-mode-map
"?" 'sc-describe
)
598 (defvar sc-electric-mode-map
()
599 "Keymap for `sc-electric-mode' electric references mode.")
600 (if sc-electric-mode-map
602 (setq sc-electric-mode-map
(make-sparse-keymap))
603 (define-key sc-electric-mode-map
"p" 'sc-eref-prev
)
604 (define-key sc-electric-mode-map
"n" 'sc-eref-next
)
605 (define-key sc-electric-mode-map
"s" 'sc-eref-setn
)
606 (define-key sc-electric-mode-map
"j" 'sc-eref-jump
)
607 (define-key sc-electric-mode-map
"x" 'sc-eref-abort
)
608 (define-key sc-electric-mode-map
"q" 'sc-eref-abort
)
609 (define-key sc-electric-mode-map
"\r" 'sc-eref-exit
)
610 (define-key sc-electric-mode-map
"\n" 'sc-eref-exit
)
611 (define-key sc-electric-mode-map
"g" 'sc-eref-goto
)
612 (define-key sc-electric-mode-map
"?" 'describe-mode
)
613 (define-key sc-electric-mode-map
"\C-h" 'describe-mode
)
614 (define-key sc-electric-mode-map
[f1] 'describe-mode)
615 (define-key sc-electric-mode-map [help] 'describe-mode)
618 (defvar sc-minibuffer-local-completion-map nil
619 "Keymap for minibuffer confirmation of attribution strings.")
620 (if sc-minibuffer-local-completion-map
622 (setq sc-minibuffer-local-completion-map
623 (copy-keymap minibuffer-local-completion-map))
624 (define-key sc-minibuffer-local-completion-map "\C-t" 'sc-toggle-fn)
625 (define-key sc-minibuffer-local-completion-map " " 'self-insert-command))
627 (defvar sc-minibuffer-local-map nil
628 "Keymap for minibuffer confirmation of attribution strings.")
629 (if sc-minibuffer-local-map
631 (setq sc-minibuffer-local-map (copy-keymap minibuffer-local-map))
632 (define-key sc-minibuffer-local-map "\C-t" 'sc-toggle-fn))
635 ;; ======================================================================
638 (defun sc-completing-read (prompt table &optional predicate require-match
639 initial-contents history)
640 "Compatibility between Emacs 18 and 19 `completing-read'.
641 In version 18, the HISTORY argument is ignored."
642 (if (memq 'v19 sc-emacs-features)
643 (funcall 'completing-read prompt table predicate require-match
644 initial-contents history)
645 (funcall 'completing-read prompt table predicate require-match
646 (or (car-safe initial-contents)
649 (defun sc-read-string (prompt &optional initial-contents history)
650 "Compatibility between Emacs 18 and 19 `read-string'.
651 In version 18, the HISTORY argument is ignored."
652 (if (memq 'v19 sc-emacs-features)
653 (read-string prompt initial-contents history)
654 (read-string prompt initial-contents)))
656 (if (fboundp 'match-string)
657 (defalias 'sc-submatch 'match-string)
658 (defun sc-submatch (matchnum &optional string)
659 "Returns `match-beginning' and `match-end' sub-expression for MATCHNUM.
660 If optional STRING is provided, take sub-expression using `substring'
661 of argument, otherwise use `buffer-substring' on current buffer. Note
662 that `match-data' must have already been generated and no error
663 checking is performed by this function."
665 (substring string (match-beginning matchnum) (match-end matchnum))
666 (buffer-substring (match-beginning matchnum) (match-end matchnum)))))
668 (if (fboundp 'member)
669 (defalias 'sc-member 'member)
670 (defun sc-member (elt list)
671 "Like `memq', but uses `equal' instead of `eq'.
672 Emacs19 has a builtin function `member' which does exactly this."
673 (catch 'elt-is-member
675 (if (equal elt (car list))
676 (throw 'elt-is-member list))
677 (setq list (cdr list))))))
679 ;; One day maybe Emacs will have this...
680 (if (fboundp 'string-text)
681 (defalias 'sc-string-text 'string-text)
682 (defun sc-string-text (string)
683 "Return STRING with all text properties removed."
684 (let ((string (copy-sequence string)))
685 (set-text-properties 0 (length string) nil string)
688 (defun sc-ask (alist)
689 "Ask a question in the minibuffer requiring a single character answer.
690 This function is kind of an extension of `y-or-n-p' where a single
691 letter is used to answer a question. Question is formed from ALIST
692 which has members of the form: (WORD . LETTER). WORD is the long
693 word form, while LETTER is the letter for selecting that answer. The
694 selected letter is returned, or nil if the question was not answered.
695 Note that WORD is a string and LETTER is a character. All LETTERs in
696 the list should be unique."
697 (let* ((prompt (concat
698 (mapconcat (function (lambda (elt) (car elt))) alist ", ")
702 (lambda (elt) (char-to-string (cdr elt)))) alist "/")
706 (if (memq 'Lucid sc-emacs-features)
710 (if (let ((cursor-in-echo-area t)
713 ;; lets be good neighbors and be compatible with all emacsen
715 ((memq 'v18 sc-emacs-features)
716 (setq event (read-char)))
717 ((memq 'Lucid sc-emacs-features)
718 (next-command-event event))
719 (t ; must be Emacs 19
720 (setq event (read-event))))
721 (prog1 quit-flag (setq quit-flag nil)))
723 (message "%s%s" p (single-key-description event))
724 (and (memq 'Lucid sc-emacs-features)
725 (deallocate-event event))
729 (if (memq 'Lucid sc-emacs-features)
730 (let* ((key (and (key-press-event-p event) (event-key event)))
731 (char (and key (event-to-character event))))
735 (if char (setq char (downcase char)))
737 ((setq elt (rassq char alist))
738 (message "%s%s" p (car elt))
740 ((and (memq 'Lucid sc-emacs-features)
741 (button-release-event-p event)) ; ignore them
744 (message "%s%s" p (single-key-description event))
745 (if (memq 'Lucid sc-emacs-features)
750 (setq p (concat "Try again. " prompt)))))))
751 (and (memq 'Lucid sc-emacs-features)
752 (deallocate-event event))
755 (defun sc-scan-info-alist (alist)
756 "Find a match in the info alist that matches a regexp in ALIST."
760 (let* ((elem (car alist))
762 (infoval (sc-mail-field infokey))
763 (mlist (car (cdr elem))))
765 (let* ((ml-elem (car mlist))
766 (regexp (car ml-elem))
767 (thing (cdr ml-elem)))
768 (if (string-match regexp infoval)
769 ;; we found a match, time to return
773 ;; else we didn't find a match
774 (setq mlist (cdr mlist))
775 ))) ;end of mlist loop
776 (setq alist (cdr alist))
777 )) ;end of alist loop
781 ;; ======================================================================
782 ;; extract mail field information from headers in reply buffer
784 ;; holder variables for bc happiness
785 (defvar sc-mail-headers-start nil
786 "Start of header fields.")
787 (defvar sc-mail-headers-end nil
788 "End of header fields.")
789 (defvar sc-mail-field-history nil
790 "For minibuffer completion on mail field queries.")
791 (defvar sc-mail-field-modification-history nil
792 "For minibuffer completion on mail field modifications.")
793 (defvar sc-mail-glom-frame
794 '((begin (setq sc-mail-headers-start (point)))
795 ("^x-attribution:[ \t]+.*$" (sc-mail-fetch-field t) nil t)
796 ("^\\S +:.*$" (sc-mail-fetch-field) nil t)
797 ("^$" (list 'abort '(step . 0)))
798 ("^[ \t]+" (sc-mail-append-field))
799 (sc-mail-warn-if-non-rfc822-p (sc-mail-error-in-mail-field))
800 (end (setq sc-mail-headers-end (point))))
801 "Regi frame for glomming mail header information.")
803 (eval-when-compile (defvar curline)) ; dynamic bondage
806 (defun sc-mail-fetch-field (&optional attribs-p)
807 "Insert a key and value into `sc-mail-info' alist.
808 If optional ATTRIBS-P is non-nil, the key/value pair is placed in
809 `sc-attributions' too."
810 (if (string-match "^\\(\\S *\\)\\s *:\\s +\\(.*\\)$" curline)
811 (let* ((key (downcase (sc-string-text (sc-submatch 1 curline))))
812 (val (sc-string-text (sc-submatch 2 curline)))
813 (keyval (cons key val)))
814 (setq sc-mail-info (cons keyval sc-mail-info))
816 (setq sc-attributions (cons keyval sc-attributions)))
820 (defun sc-mail-append-field ()
821 "Append a continuation line onto the last fetched mail field's info."
822 (let ((keyval (car sc-mail-info)))
823 (if (and keyval (string-match "^\\s *\\(.*\\)$" curline))
824 (setcdr keyval (concat (cdr keyval) " "
825 (sc-string-text (sc-submatch 1 curline))))))
828 (defun sc-mail-error-in-mail-field ()
829 "Issue warning that mail headers don't conform to RFC 822."
830 (let* ((len (min (length curline) 10))
831 (ellipsis (if (< len (length curline)) "..." ""))
832 (msg "Mail header \"%s%s\" doesn't conform to RFC 822. skipping..."))
833 (message msg (substring curline 0 len) ellipsis))
838 ;; mail header nuking
839 (defvar sc-mail-last-header-nuked-p nil
840 "True if the last header was nuked.")
842 (defun sc-mail-nuke-line ()
843 "Nuke the current mail header line."
844 (delete-region (regi-pos 'bol) (regi-pos 'bonl))
847 (defun sc-mail-nuke-header-line ()
848 "Delete current-line and set up for possible continuation."
849 (setq sc-mail-last-header-nuked-p t)
852 (defun sc-mail-nuke-continuation-line ()
853 "Delete a continuation line if the last header line was deleted."
854 (if sc-mail-last-header-nuked-p
855 (sc-mail-nuke-line)))
857 (defun sc-mail-cleanup-blank-lines ()
858 "Leave some blank lines after original mail headers are nuked.
859 The number of lines left is specified by `sc-blank-lines-after-headers'."
860 (if sc-blank-lines-after-headers
863 (skip-chars-backward " \t\n")
867 (if (looking-at "[ \t]*$")
868 (delete-region (regi-pos 'bol) (regi-pos 'bonl)))
869 (insert-char ?\n sc-blank-lines-after-headers)))
872 (defun sc-mail-build-nuke-frame ()
873 "Build the regiframe for nuking mail headers."
874 (let (every-func entry-func nonentry-func)
876 ((eq sc-nuke-mail-headers 'all)
877 (setq every-func '(progn (forward-line -1) (sc-mail-nuke-line))))
878 ((eq sc-nuke-mail-headers 'specified)
879 (setq entry-func '(sc-mail-nuke-header-line)
880 nonentry-func '(setq sc-mail-last-header-nuked-p nil)))
881 ((eq sc-nuke-mail-headers 'keep)
882 (setq entry-func '(setq sc-mail-last-header-nuked-p nil)
883 nonentry-func '(sc-mail-nuke-header-line)))
884 ;; we never get far enough to interpret a frame if s-n-m-h == 'none
885 ((eq sc-nuke-mail-headers 'none))
886 (t (error "Illegal value for sc-nuke-mail-headers: %s"
887 sc-nuke-mail-headers))
891 (regi-mapcar sc-nuke-mail-header-list entry-func nil t))
892 (and nonentry-func (list (list "^\\S +:.*$" nonentry-func)))
893 (and (not every-func)
894 '(("^[ \t]+" (sc-mail-nuke-continuation-line))))
895 '((begin (setq sc-mail-last-header-zapped-p nil)))
896 '((end (sc-mail-cleanup-blank-lines)))
897 (and every-func (list (list 'every every-func)))
900 ;; mail processing and zapping. this is the top level entry defun to
901 ;; all header processing.
902 (defun sc-mail-process-headers (start end)
903 "Process original mail message's mail headers.
904 After processing, mail headers may be nuked. Header information is
905 stored in `sc-mail-info', and any old information is lost unless an
908 (let ((info (copy-alist sc-mail-info))
909 (attribs (copy-alist sc-attributions)))
910 (setq sc-mail-info nil
912 (regi-interpret sc-mail-glom-frame start end)
913 (if (null sc-mail-info)
915 (message "No mail headers found! Restoring old information.")
916 (setq sc-mail-info info
917 sc-attributions attribs))
918 (regi-interpret (sc-mail-build-nuke-frame)
919 sc-mail-headers-start sc-mail-headers-end)
923 ;; let the user change mail field information
924 (defun sc-mail-field (field)
925 "Return the mail header field value associated with FIELD.
926 If there was no mail header with FIELD as its key, return the value of
927 `sc-mumble'. FIELD is case insensitive."
928 (or (cdr (assoc (downcase field) sc-mail-info)) sc-mumble))
930 (defun sc-mail-field-query (arg)
931 "View the value of a mail field.
932 With `\\[universal-argument]', prompts for action on mail field.
933 Action can be one of: View, Modify, Add, or Delete."
935 (let* ((alist '(("view" . ?v) ("modify" . ?m) ("add" . ?a) ("delete" . ?d)))
936 (action (if (not arg) ?v (sc-ask alist)))
940 (setq key (sc-completing-read
941 (concat (car (rassq action alist))
942 " information key: ")
944 (if (eq action ?a) nil 'noexit)
945 nil 'sc-mail-field-history))
948 (message "%s: %s" key (cdr (assoc key sc-mail-info))))
950 (setq sc-mail-info (delq (assoc key sc-mail-info) sc-mail-info)))
952 (let ((keyval (assoc key sc-mail-info)))
953 ;; first put initial value onto list if not already there
954 (if (not (sc-member (cdr keyval)
955 sc-mail-field-modification-history))
956 (setq sc-mail-field-modification-history
957 (cons (cdr keyval) sc-mail-field-modification-history)))
958 (setcdr keyval (sc-read-string
959 (concat key ": ") (cdr keyval)
960 'sc-mail-field-modification-history))))
964 (sc-read-string (concat key ": "))) sc-mail-info)))
968 ;; ======================================================================
971 (defvar sc-attribution-confirmation-history nil
972 "History for confirmation of attribution strings.")
973 (defvar sc-citation-confirmation-history nil
974 "History for confirmation of attribution prefixes.")
976 (defun sc-attribs-%@-addresses (from &optional delim)
977 "Extract the author's email terminus from email address FROM.
978 Match addresses of the style ``name%[stuff].'' when called with DELIM
979 of \"%\" and addresses of the style ``[stuff]name@[stuff]'' when
980 called with DELIM \"@\". If DELIM is nil or not provided, matches
981 addresses of the style ``name''."
982 (and (string-match (concat "[-a-zA-Z0-9_.]+" delim) from 0)
985 (- (match-end 0) (if (null delim) 0 1)))))
987 (defun sc-attribs-!-addresses (from)
988 "Extract the author's email terminus from email address FROM.
989 Match addresses of the style ``[stuff]![stuff]...!name[stuff].''"
990 (let ((eos (length from))
991 (mstart (string-match "![-a-zA-Z0-9_.]+\\([^-!a-zA-Z0-9_.]\\|$\\)"
993 (mend (match-end 0)))
995 (substring from (1+ mstart) (- mend (if (= mend eos) 0 1)))
998 (defun sc-attribs-<>-addresses (from)
999 "Extract the author's email terminus from email address FROM.
1000 Match addresses of the style ``<name[stuff]>.''"
1001 (and (string-match "<\\(.*\\)>" from)
1002 (sc-submatch 1 from)))
1004 (defun sc-get-address (from author)
1005 "Get the full email address path from FROM.
1006 AUTHOR is the author's name (which is removed from the address)."
1007 (let ((eos (length from)))
1008 (if (string-match (concat "\\(^\\|^\"\\)" author
1009 "\\(\\s +\\|\"\\s +\\)") from 0)
1010 (let ((address (substring from (match-end 0) eos)))
1011 (if (and (= (aref address 0) ?<)
1012 (= (aref address (1- (length address))) ?>))
1013 (substring address 1 (1- (length address)))
1015 (if (string-match "[-[:alnum:]!@%._]+" from 0)
1016 (sc-submatch 0 from)
1020 (defun sc-attribs-emailname (from)
1021 "Get the email terminus name from FROM."
1023 (sc-attribs-%@-addresses from "%")
1024 (sc-attribs-%@-addresses from "@")
1025 (sc-attribs-!-addresses from)
1026 (sc-attribs-<>-addresses from)
1027 (sc-attribs-%@-addresses from)
1028 (substring from 0 10)))
1030 (defun sc-name-substring (string start end extend)
1031 "Extract the specified substring of STRING from START to END.
1032 EXTEND is the number of characters on each side to extend the
1035 (let ((sos (+ start extend))
1036 (eos (- end extend)))
1037 (substring string sos
1038 (or (string-match sc-titlecue-regexp string sos) eos)
1041 (defun sc-attribs-extract-namestring (from)
1042 "Extract the name string from FROM.
1043 This should be the author's full name minus an optional title."
1046 ;; If there is a <...> in the name,
1047 ;; treat everything before that as the full name.
1048 ;; Even if it contains parens, use the whole thing.
1049 ;; On the other hand, we do look for quotes in the usual way.
1050 (and (string-match " *<.*>" from 0)
1051 (let ((before-angles
1052 (sc-name-substring from 0 (match-beginning 0) 0)))
1053 (if (string-match "\".*\"" before-angles 0)
1055 before-angles (match-beginning 0) (match-end 0) 1)
1058 from (string-match "(.*)" from 0) (match-end 0) 1)
1060 from (string-match "\".*\"" from 0) (match-end 0) 1)
1062 from (string-match "\\([-.[:alnum:]_]+\\s +\\)+<" from 0)
1064 (sc-attribs-emailname from))))
1065 ;; strip off any leading or trailing whitespace
1068 (eos (1- (length namestring))))
1069 (while (and (<= bos eos)
1070 (memq (aref namestring bos) '(32 ?\t)))
1071 (setq bos (1+ bos)))
1072 (while (and (> eos bos)
1073 (memq (aref namestring eos) '(32 ?\t)))
1074 (setq eos (1- eos)))
1075 (substring namestring bos (1+ eos))))))
1077 (defun sc-attribs-chop-namestring (namestring)
1078 "Convert NAMESTRING to a list of names.
1079 example: (sc-namestring-to-list \"John Xavier Doe\")
1080 => (\"John\" \"Xavier\" \"Doe\")"
1081 (if (string-match "\\([ \t]*\\)\\([^ \t._]+\\)\\([ \t]*\\)" namestring)
1082 (cons (sc-submatch 2 namestring)
1083 (sc-attribs-chop-namestring (substring namestring (match-end 3)))
1086 (defun sc-attribs-strip-initials (namelist)
1087 "Extract the author's initials from the NAMELIST."
1091 (if (< 0 (length name))
1092 (substring name 0 1))))
1095 (defun sc-guess-attribution (&optional string)
1096 "Guess attribution string on current line.
1097 If attribution cannot be guessed, nil is returned. Optional STRING if
1098 supplied, is used instead of the line point is on in the current buffer."
1100 (string (or string (buffer-substring (regi-pos 'bol) (regi-pos 'eol))))
1103 (= start (or (string-match sc-citation-leader-regexp string start) -1))
1104 (setq start (match-end 0))
1105 (= start (or (string-match sc-citation-root-regexp string start) 1))
1106 (setq attribution (sc-submatch 0 string)
1107 start (match-end 0))
1108 (= start (or (string-match sc-citation-delimiter-regexp string start) -1))
1109 (setq start (match-end 0))
1110 (= start (or (string-match sc-citation-separator-regexp string start) -1))
1113 (defun sc-attribs-filter-namelist (namelist)
1114 "Filter out noise in NAMELIST according to `sc-name-filter-alist'."
1115 (let ((elements (length namelist))
1117 keepers filtered-list)
1121 (setq position (1+ position))
1126 (let ((regexp (car filter))
1128 (if (and (string-match regexp name)
1129 (or (and (numberp pos)
1132 (= position (1- elements)))
1136 sc-name-filter-alist)
1138 (setq keepers (cons position keepers)))
1144 (setq filtered-list (cons (nth position namelist) filtered-list))
1149 (defun sc-attribs-chop-address (from)
1150 "Extract attribution information from FROM.
1151 This populates the `sc-attributions' with the list of possible attributions."
1152 (if (and (stringp from)
1153 (< 0 (length from)))
1154 (let* ((sc-mumble "")
1155 (namestring (sc-attribs-extract-namestring from))
1156 (namelist (sc-attribs-filter-namelist
1157 (sc-attribs-chop-namestring namestring)))
1158 (revnames (reverse (cdr namelist)))
1159 (firstname (car namelist))
1160 (midnames (reverse (cdr revnames)))
1161 (lastname (car revnames))
1162 (initials (sc-attribs-strip-initials namelist))
1163 (emailname (sc-attribs-emailname from))
1167 ;; put basic information
1169 ;; put middle names and build sc-author entry
1170 middlenames (mapconcat
1173 (let ((key-attribs (format "middlename-%d" n))
1174 (key-mail (format "sc-middlename-%d" n)))
1176 sc-attributions (cons (cons key-attribs midname)
1178 sc-mail-info (cons (cons key-mail midname)
1184 author (concat firstname " " middlenames (and midnames " ") lastname)
1186 sc-attributions (append
1188 (cons "firstname" firstname)
1189 (cons "lastname" lastname)
1190 (cons "emailname" emailname)
1191 (cons "initials" initials))
1193 sc-mail-info (append
1195 (cons "sc-firstname" firstname)
1196 (cons "sc-middlenames" middlenames)
1197 (cons "sc-lastname" lastname)
1198 (cons "sc-emailname" emailname)
1199 (cons "sc-initials" initials)
1200 (cons "sc-author" author)
1201 (cons "sc-from-address" (sc-get-address
1202 (sc-mail-field "from")
1204 (cons "sc-reply-address" (sc-get-address
1205 (sc-mail-field "reply-to")
1207 (cons "sc-sender-address" (sc-get-address
1208 (sc-mail-field "sender")
1213 ;; from string is empty
1214 (setq sc-mail-info (cons (cons "sc-author" sc-default-author-name)
1217 (defvar sc-attrib-or-cite nil
1218 "Used to toggle between attribution input or citation input.")
1220 (defun sc-toggle-fn ()
1221 "Toggle between attribution selection and citation selection.
1222 Only used during confirmation."
1224 (setq sc-attrib-or-cite (not sc-attrib-or-cite))
1225 (throw 'sc-reconfirm t))
1227 (defun sc-select-attribution ()
1228 "Select an attribution from `sc-attributions'.
1230 Variables involved in selection process include:
1231 `sc-preferred-attribution-list'
1232 `sc-use-only-preference-p'
1233 `sc-confirm-always-p'
1234 `sc-default-attribution'
1235 `sc-attrib-selection-list'.
1237 Runs the hook `sc-attribs-preselect-hook' before selecting an
1238 attribution and the hook `sc-attribs-postselect-hook' after making the
1239 selection but before querying is performed. During
1240 `sc-attribs-postselect-hook' the variable `citation' is bound to the
1241 auto-selected citation string and the variable `attribution' is bound
1242 to the auto-selected attribution string."
1243 (run-hooks 'sc-attribs-preselect-hook)
1244 (let ((query-p sc-confirm-always-p)
1245 attribution citation
1246 (attriblist sc-preferred-attribution-list))
1248 ;; first cruise through sc-preferred-attribution-list looking for
1249 ;; a match in either sc-attributions or sc-mail-info. if the
1250 ;; element is "sc-consult", then we have to do the alist
1251 ;; consultation phase
1253 (let* ((preferred (car attriblist)))
1255 ((string= preferred "sc-consult")
1256 ;; we've been told to consult the attribution vs. mail
1257 ;; header key alist. we do this until we find a match in
1258 ;; the sc-attrib-selection-list. if we do not find a match,
1259 ;; we continue scanning attriblist
1260 (let ((attrib (sc-scan-info-alist sc-attrib-selection-list)))
1263 (setq attriblist (cdr attriblist)))
1265 (setq attribution attrib
1268 (setq attribution (eval attrib)
1270 (t (error "%s did not evaluate to a string or list!"
1271 "sc-attrib-selection-list"))
1273 ((setq attribution (cdr (assoc preferred sc-attributions)))
1274 (setq attriblist nil))
1276 (setq attriblist (cdr attriblist)))
1279 ;; if preference was not found, we may use a secondary method to
1280 ;; find a valid attribution
1281 (if (and (not attribution)
1282 (not sc-use-only-preference-p))
1283 ;; secondary method tries to find a preference in this order
1289 ;; 6. first non-empty attribution in alist
1291 (or (cdr (assoc "sc-lastchoice" sc-attributions))
1292 (cdr (assoc "x-attribution" sc-attributions))
1293 (cdr (assoc "firstname" sc-attributions))
1294 (cdr (assoc "lastname" sc-attributions))
1295 (cdr (assoc "initials" sc-attributions))
1296 (cdr (car sc-attributions)))))
1298 ;; still couldn't find an attribution. we're now limited to using
1299 ;; the default attribution, but we'll force a query when this happens
1300 (if (not attribution)
1301 (setq attribution sc-default-attribution
1304 ;; create the attribution prefix
1305 (setq citation (sc-make-citation attribution))
1307 ;; run the post selection hook before querying the user
1308 (run-hooks 'sc-attribs-postselect-hook)
1310 ;; query for confirmation
1312 (let* ((query-alist (mapcar (function (lambda (entry)
1313 (list (cdr entry))))
1315 (minibuffer-local-completion-map
1316 sc-minibuffer-local-completion-map)
1317 (minibuffer-local-map sc-minibuffer-local-map)
1318 (initial attribution)
1319 (completer-disable t) ; in case completer.el is used
1321 (setq sc-attrib-or-cite nil) ; nil==attribution, t==citation
1323 (catch 'sc-reconfirm
1324 (string= "" (setq choice
1325 (if sc-attrib-or-cite
1327 "Enter citation prefix: "
1329 'sc-citation-confirmation-history)
1331 "Complete attribution name: "
1334 'sc-attribution-confirmation-history)
1336 (if sc-attrib-or-cite
1337 ;; since the citation was chosen, we have to guess at
1339 (setq citation choice
1340 attribution (or (sc-guess-attribution citation)
1343 (setq citation (sc-make-citation choice)
1344 attribution choice))
1347 ;; its possible that the user wants to downcase the citation and
1350 (setq citation (downcase citation)
1351 attribution (downcase attribution)))
1353 ;; set up mail info alist
1354 (let* ((ckey "sc-citation")
1355 (akey "sc-attribution")
1356 (ckeyval (assoc ckey sc-mail-info))
1357 (akeyval (assoc akey sc-mail-info)))
1359 (setcdr ckeyval citation)
1361 (append (list (cons ckey citation)) sc-mail-info)))
1363 (setcdr akeyval attribution)
1365 (append (list (cons akey attribution)) sc-mail-info))))
1367 ;; set the sc-lastchoice attribution
1368 (let* ((lkey "sc-lastchoice")
1369 (lastchoice (assoc lkey sc-attributions)))
1371 (setcdr lastchoice attribution)
1372 (setq sc-attributions
1373 (cons (cons lkey attribution) sc-attributions))))
1377 ;; ======================================================================
1378 ;; filladapt hooks for supercite 3.1. you shouldn't need anything
1379 ;; extra to make gin-mode understand supercited lines. Even this
1380 ;; stuff might not be entirely necessary...
1382 (defun sc-cite-regexp (&optional root-regexp)
1383 "Return a regexp describing a Supercited line.
1384 The regexp is the concatenation of `sc-citation-leader-regexp',
1385 `sc-citation-root-regexp', `sc-citation-delimiter-regexp', and
1386 `sc-citation-separator-regexp'. If optional ROOT-REGEXP is supplied,
1387 use it instead of `sc-citation-root-regexp'."
1388 (concat sc-citation-leader-regexp
1389 (or root-regexp sc-citation-root-regexp)
1390 sc-citation-delimiter-regexp
1391 sc-citation-separator-regexp))
1393 (defun sc-make-citation (attribution)
1394 "Make a non-nested citation from ATTRIBUTION."
1395 (concat sc-citation-leader
1397 sc-citation-delimiter
1398 sc-citation-separator))
1400 (defun sc-setup-filladapt ()
1401 "Setup `filladapt-prefix-table' to handle Supercited paragraphs."
1402 (let* ((fa-sc-elt 'filladapt-supercite-included-text)
1403 (elt (rassq fa-sc-elt filladapt-prefix-table)))
1404 (if elt (setcar elt (sc-cite-regexp))
1405 (message "Filladapt doesn't seem to know about Supercite.")
1409 ;; ======================================================================
1410 ;; citing and unciting regions of text
1412 (defvar sc-fill-begin 1
1413 "Buffer position to begin filling.")
1414 (defvar sc-fill-line-prefix ""
1415 "Fill prefix of previous line")
1418 (defun sc-fill-if-different (&optional prefix)
1419 "Fill the region bounded by `sc-fill-begin' and point.
1420 Only fill if optional PREFIX is different than `sc-fill-line-prefix'.
1421 If `sc-auto-fill-region-p' is nil, do not fill region. If PREFIX is
1422 not supplied, initialize fill variables. This is useful for a regi
1423 `begin' frame-entry."
1425 (setq sc-fill-line-prefix ""
1426 sc-fill-begin (regi-pos 'bol))
1427 (if (and sc-auto-fill-region-p
1428 (not (string= prefix sc-fill-line-prefix)))
1429 (let ((fill-prefix sc-fill-line-prefix))
1430 (if (not (string= fill-prefix ""))
1431 (fill-region sc-fill-begin (regi-pos 'bol)))
1432 (setq sc-fill-line-prefix prefix
1433 sc-fill-begin (regi-pos 'bol))))
1437 (defun sc-cite-coerce-cited-line ()
1438 "Coerce a Supercited line to look like our style."
1439 (let* ((attribution (sc-guess-attribution))
1440 (regexp (sc-cite-regexp attribution))
1441 (prefix (sc-make-citation attribution)))
1442 (if (and attribution
1443 (looking-at regexp))
1448 (goto-char (match-end 0))
1449 (if (bolp) (forward-char -1))
1452 (sc-fill-if-different prefix)))
1455 (defun sc-cite-coerce-dumb-citer ()
1456 "Coerce a non-nested citation that's been cited with a dumb nesting citer."
1457 (delete-region (match-beginning 1) (match-end 1))
1459 (sc-cite-coerce-cited-line))
1461 (defun sc-guess-nesting (&optional string)
1462 "Guess the citation nesting on the current line.
1463 If nesting cannot be guessed, nil is returned. Optional STRING if
1464 supplied, is used instead of the line point is on in the current
1467 (string (or string (buffer-substring (regi-pos 'bol) (regi-pos 'eol))))
1470 (= start (or (string-match sc-citation-leader-regexp string start) -1))
1471 (setq start (match-end 0))
1472 (= start (or (string-match sc-citation-delimiter-regexp string start) -1))
1473 (setq nesting (sc-submatch 0 string)
1474 start (match-end 0))
1475 (= start (or (string-match sc-citation-separator-regexp string start) -1))
1478 (defun sc-add-citation-level ()
1479 "Add a citation level for nested citation style w/ coercion."
1480 (let* ((nesting (sc-guess-nesting))
1481 (citation (make-string (1+ (length nesting))
1482 (string-to-char sc-citation-delimiter)))
1483 (prefix (concat sc-citation-leader citation sc-citation-separator)))
1484 (if (looking-at (sc-cite-regexp ""))
1485 (delete-region (match-beginning 0) (match-end 0)))
1487 (sc-fill-if-different prefix)))
1489 (defun sc-cite-line (&optional citation)
1490 "Cite a single line of uncited text.
1491 Optional CITATION overrides any citation automatically selected."
1492 (if sc-fixup-whitespace-p
1494 (let ((prefix (or citation
1495 (cdr (assoc "sc-citation" sc-mail-info))
1496 sc-default-attribution)))
1498 (sc-fill-if-different prefix))
1501 (defun sc-uncite-line ()
1502 "Remove citation from current line."
1503 (let ((cited (looking-at (sc-cite-regexp))))
1505 (delete-region (match-beginning 0) (match-end 0))))
1508 (defun sc-recite-line (regexp)
1509 "Remove citation matching REGEXP from current line and recite line."
1510 (let ((cited (looking-at (concat "^" regexp)))
1511 (prefix (cdr (assoc "sc-citation" sc-mail-info))))
1513 (delete-region (match-beginning 0) (match-end 0)))
1514 (insert (or prefix sc-default-attribution))
1515 (sc-fill-if-different prefix))
1518 ;; interactive functions
1519 (defun sc-cite-region (start end &optional confirm-p)
1520 "Cite a region delineated by START and END.
1521 If optional CONFIRM-P is non-nil, the attribution is confirmed before
1522 its use in the citation string. This function first runs
1523 `sc-pre-cite-hook'."
1524 (interactive "r\nP")
1526 (let ((frame (or (sc-scan-info-alist sc-cite-frame-alist)
1527 sc-default-cite-frame))
1528 (sc-confirm-always-p (if confirm-p t sc-confirm-always-p)))
1529 (run-hooks 'sc-pre-cite-hook)
1531 (sc-select-attribution))
1532 (regi-interpret frame start end)))
1534 (defun sc-uncite-region (start end)
1535 "Uncite a region delineated by START and END.
1536 First runs `sc-pre-uncite-hook'."
1539 (let ((frame (or (sc-scan-info-alist sc-uncite-frame-alist)
1540 sc-default-uncite-frame)))
1541 (run-hooks 'sc-pre-uncite-hook)
1542 (regi-interpret frame start end)))
1544 (defun sc-recite-region (start end)
1545 "Recite a region delineated by START and END.
1546 First runs `sc-pre-recite-hook'."
1548 (let ((sc-confirm-always-p t))
1549 (sc-select-attribution))
1551 (let ((frame (or (sc-scan-info-alist sc-recite-frame-alist)
1552 sc-default-recite-frame)))
1553 (run-hooks 'sc-pre-recite-hook)
1554 (regi-interpret frame start end)))
1557 ;; ======================================================================
1560 (defun sc-hdr (prefix field &optional sep return-nil-p)
1561 "Returns a concatenation of PREFIX and FIELD.
1562 If FIELD is not a string or is the empty string, the empty string will
1563 be returned. Optional third argument SEP is concatenated on the end if
1564 it is a string. Returns empty string, unless optional RETURN-NIL-P is
1566 (if (and (stringp field)
1567 (not (string= field "")))
1568 (concat prefix field (or sep ""))
1569 (and (not return-nil-p) "")))
1571 (defun sc-whofrom ()
1572 "Return the value of (sc-mail-field \"from\") or nil."
1573 (let ((sc-mumble nil))
1574 (sc-mail-field "from")))
1576 (defun sc-no-header ()
1577 "Does nothing. Use this instead of nil to get a blank header."
1580 (defun sc-no-blank-line-or-header()
1581 "Similar to `sc-no-header' except it removes the preceding blank line."
1584 (progn (forward-line -1)
1585 (or (= (point) (mail-header-end))
1586 (and (eq major-mode 'mh-letter-mode)
1587 (mh-in-header-p)))))
1588 (progn (forward-line)
1589 (let ((kill-lines-magic t))
1592 (defun sc-header-on-said ()
1593 "\"On <date>, <from> said:\" unless:
1594 1. the \"from\" field cannot be found, in which case nothing is inserted;
1595 2. the \"date\" field is missing in which case only the from part is printed."
1596 (let ((sc-mumble "")
1597 (whofrom (sc-whofrom)))
1599 (insert sc-reference-tag-string
1600 (sc-hdr "On " (sc-mail-field "date") ", ")
1601 whofrom " said:\n"))))
1603 (defun sc-header-inarticle-writes ()
1604 "\"In article <message-id>, <from> writes:\"
1605 Treats \"message-id\" and \"from\" fields similar to `sc-header-on-said'."
1606 (let ((sc-mumble "")
1607 (whofrom (sc-mail-field "from")))
1609 (insert sc-reference-tag-string
1610 (sc-hdr "In article " (sc-mail-field "message-id") ", ")
1611 whofrom " writes:\n"))))
1613 (defun sc-header-regarding-adds ()
1614 "\"Regarding <subject>; <from> adds:\"
1615 Treats \"subject\" and \"from\" fields similar to `sc-header-on-said'."
1616 (let ((sc-mumble "")
1617 (whofrom (sc-whofrom)))
1619 (insert sc-reference-tag-string
1620 (sc-hdr "Regarding " (sc-mail-field "subject") "; ")
1621 whofrom " adds:\n"))))
1623 (defun sc-header-attributed-writes ()
1624 "\"<sc-attribution>\" == <sc-author> <address> writes:
1625 Treats these fields in a similar manner to `sc-header-on-said'."
1626 (let ((sc-mumble "")
1627 (whofrom (sc-whofrom)))
1629 (insert sc-reference-tag-string
1630 (sc-hdr "\"" (sc-mail-field "sc-attribution") "\" == ")
1631 (sc-hdr "" (sc-mail-field "sc-author") " ")
1632 (or (sc-hdr "<" (sc-mail-field "sc-from-address") ">" t)
1633 (sc-hdr "<" (sc-mail-field "sc-reply-address") ">" t)
1637 (defun sc-header-author-writes ()
1638 "<sc-author> writes:"
1639 (let ((sc-mumble "")
1640 (whofrom (sc-whofrom)))
1642 (insert sc-reference-tag-string
1643 (sc-hdr "" (sc-mail-field "sc-author"))
1646 (defun sc-header-verbose ()
1647 "Very verbose, some say gross."
1648 (let ((sc-mumble "")
1649 (whofrom (sc-whofrom))
1650 (tag sc-reference-tag-string))
1652 (insert (sc-hdr (concat tag "On ") (sc-mail-field "date") ",\n")
1653 (or (sc-hdr tag (sc-mail-field "sc-author") "\n" t)
1654 (concat tag whofrom "\n"))
1655 (sc-hdr (concat tag "from the organization of ")
1656 (sc-mail-field "organization") "\n")
1657 (let ((rtag (concat tag "who can be reached at: ")))
1658 (or (sc-hdr rtag (sc-mail-field "sc-from-address") "\n" t)
1659 (sc-hdr rtag (sc-mail-field "sc-reply-address") "\n" t)
1662 (concat tag "(whose comments are cited below with \"")
1663 (sc-mail-field "sc-citation") "\"),\n")
1664 (sc-hdr (concat tag "had this to say in article ")
1665 (sc-mail-field "message-id") "\n")
1666 (sc-hdr (concat tag "in newsgroups ")
1667 (sc-mail-field "newsgroups") "\n")
1668 (sc-hdr (concat tag "concerning the subject of ")
1669 (sc-mail-field "subject") "\n")
1670 (sc-hdr (concat tag "(see ")
1671 (sc-mail-field "references")
1672 " for more details)\n")
1676 ;; ======================================================================
1679 (defconst sc-electric-bufname " *sc-erefs* "
1680 "Supercite electric reference mode's buffer name.")
1681 (defvar sc-eref-style 0
1682 "Current electric reference style.")
1684 (defun sc-valid-index-p (index)
1685 "Returns INDEX if it is a valid index into `sc-rewrite-header-list'.
1686 Otherwise returns nil."
1687 ;; a number, and greater than or equal to zero
1688 ;; less than or equal to the last index
1689 (and (natnump index)
1690 (< index (length sc-rewrite-header-list))
1693 (defun sc-eref-insert-selected (&optional nomsg)
1694 "Insert the selected reference header in the current buffer.
1695 Optional NOMSG, if non-nil, inhibits printing messages, unless an
1697 (let ((ref (nth sc-eref-style sc-rewrite-header-list)))
1701 (let ((lines (count-lines (point-min) (point-max))))
1702 (or nomsg (message "Ref header %d [%d line%s]: %s"
1704 (if (= lines 1) "" "s")
1708 "Symbol's function definition is void: %s (Header %d)"
1709 (car (cdr err)) sc-eref-style)
1714 (defun sc-electric-mode (&optional arg)
1716 Mode for viewing Supercite reference headers. Commands are:
1717 \n\\{sc-electric-mode-map}
1719 `sc-electric-mode' is not intended to be run interactively, but rather
1720 accessed through Supercite's electric reference feature. See
1721 `sc-insert-reference' for more details. Optional ARG is the initial
1722 header style to use, unless not supplied or invalid, in which case
1723 `sc-preferred-header-style' is used."
1725 (let ((info sc-mail-info))
1728 (or (sc-valid-index-p arg)
1729 (sc-valid-index-p sc-preferred-header-style)
1732 (get-buffer-create sc-electric-bufname)
1733 ;; set up buffer and enter command loop
1735 (save-window-excursion
1736 (pop-to-buffer sc-electric-bufname)
1737 (kill-all-local-variables)
1738 (let ((sc-mail-info info)
1739 (buffer-read-only t)
1740 (mode-name "SC Electric Refs")
1741 (major-mode 'sc-electric-mode))
1742 (use-local-map sc-electric-mode-map)
1743 (sc-eref-show sc-eref-style)
1744 (run-hooks 'sc-electric-mode-hook)
1749 (sc-eref-insert-selected))
1750 (kill-buffer sc-electric-bufname)
1753 ;; functions for electric reference mode
1754 (defun sc-eref-show (index)
1755 "Show reference INDEX in `sc-rewrite-header-list'."
1756 (let ((msg "No %ing reference headers in list.")
1757 (last (length sc-rewrite-header-list)))
1760 ((sc-valid-index-p index) index)
1762 (if sc-electric-circular-p
1764 (progn (error msg "preced") 0)))
1766 (if sc-electric-circular-p
1768 (progn (error msg "follow") (1- last))))
1771 (set-buffer sc-electric-bufname)
1772 (let ((buffer-read-only nil))
1774 (goto-char (point-min))
1775 (sc-eref-insert-selected)
1776 ;; now shrink the window to just contain the electric reference
1778 (let ((hdrlines (count-lines (point-min) (point-max)))
1779 (winlines (1- (window-height))))
1780 (if (/= hdrlines winlines)
1781 (if (> hdrlines winlines)
1782 ;; we have to enlarge the window
1783 (enlarge-window (- hdrlines winlines))
1784 ;; we have to shrink the window
1785 (shrink-window (- winlines (max hdrlines window-min-height)))
1789 (defun sc-eref-next ()
1790 "Display next reference in other buffer."
1792 (sc-eref-show (1+ sc-eref-style)))
1794 (defun sc-eref-prev ()
1795 "Display previous reference in other buffer."
1797 (sc-eref-show (1- sc-eref-style)))
1799 (defun sc-eref-setn ()
1800 "Set reference header selected as preferred."
1802 (setq sc-preferred-header-style sc-eref-style)
1803 (message "Preferred reference style set to header %d." sc-eref-style))
1805 (defun sc-eref-goto (refnum)
1806 "Show reference style indexed by REFNUM.
1807 If REFNUM is an invalid index, don't go to that reference and return
1809 (interactive "NGoto Reference: ")
1810 (if (sc-valid-index-p refnum)
1811 (sc-eref-show refnum)
1812 (error "Invalid reference: %d. (Range: [%d .. %d])"
1813 refnum 0 (1- (length sc-rewrite-header-list)))
1816 (defun sc-eref-jump ()
1817 "Set reference header to preferred header."
1819 (sc-eref-show sc-preferred-header-style))
1821 (defun sc-eref-abort ()
1822 "Exit from electric reference mode without inserting reference."
1824 (setq sc-eref-style nil)
1825 (exit-recursive-edit))
1827 (defun sc-eref-exit ()
1828 "Exit from electric reference mode and insert selected reference."
1830 (exit-recursive-edit))
1832 (defun sc-insert-reference (arg)
1833 "Insert, at point, a reference header in the body of the reply.
1834 Numeric ARG indicates which header style from `sc-rewrite-header-list'
1835 to use when rewriting the header. No supplied ARG indicates use of
1836 `sc-preferred-header-style'.
1838 With just `\\[universal-argument]', electric reference insert mode is
1839 entered, regardless of the value of `sc-electric-references-p'. See
1840 `sc-electric-mode' for more information."
1844 (let ((preference (or (sc-valid-index-p arg)
1845 (sc-valid-index-p sc-preferred-header-style)
1846 sc-preferred-header-style
1848 (if sc-electric-references-p
1849 (sc-electric-mode preference)
1850 (sc-eref-insert-selected t)
1854 ;; ======================================================================
1855 ;; variable toggling
1857 (defun sc-raw-mode-toggle ()
1858 "Toggle, in one fell swoop, two important SC variables:
1859 `sc-fixup-whitespace-p' and `sc-auto-fill-region-p'"
1861 (setq sc-fixup-whitespace-p (not sc-fixup-whitespace-p)
1862 sc-auto-fill-region-p (not sc-auto-fill-region-p))
1863 (sc-set-mode-string)
1864 (force-mode-line-update))
1866 (defun sc-toggle-var (variable)
1867 "Boolean toggle VARIABLE's value.
1868 VARIABLE must be a bound symbol. Nil values change to t, non-nil
1869 values are changed to nil."
1870 (message "%s changed from %s to %s"
1871 variable (symbol-value variable)
1872 (set-variable variable (not (eval-expression variable))))
1873 (sc-set-mode-string))
1875 (defun sc-set-variable (var)
1876 "Set the Supercite VARIABLE.
1877 This function mimics `set-variable', except that the variable to set
1878 is determined non-interactively. The value is queried for in the
1879 minibuffer exactly the same way that `set-variable' does it.
1881 You can see the current value of the variable when the minibuffer is
1882 querying you by typing `C-h'. Note that the format is changed
1883 slightly from that used by `set-variable' -- the current value is
1884 printed just after the variable's name instead of at the bottom of the
1886 (let* ((minibuffer-help-form
1891 (with-output-to-temp-buffer "*Help*"
1894 (let ((print-length 20))
1895 (princ "\t(Current value: ")
1896 (prin1 (symbol-value var))
1898 (princ "\n\nDocumentation:\n")
1899 (princ (substring (documentation-property
1901 'variable-documentation)
1904 (set-buffer standard-output)
1907 (set var (eval-minibuffer (format "Set %s to value: " var))))
1908 (sc-set-mode-string))
1910 (defmacro sc-toggle-symbol (rootname)
1911 (list 'defun (intern (concat "sc-T-" rootname)) '()
1913 (list 'sc-toggle-var
1914 (list 'quote (intern (concat "sc-" rootname "-p"))))))
1916 (defmacro sc-setvar-symbol (rootname)
1917 (list 'defun (intern (concat "sc-S-" rootname)) '()
1919 (list 'sc-set-variable
1920 (list 'quote (intern (concat "sc-" rootname))))))
1922 (sc-toggle-symbol "confirm-always")
1923 (sc-toggle-symbol "downcase")
1924 (sc-toggle-symbol "electric-references")
1925 (sc-toggle-symbol "auto-fill-region")
1926 (sc-toggle-symbol "mail-nuke-blank-lines")
1927 (sc-toggle-symbol "nested-citation")
1928 (sc-toggle-symbol "electric-circular")
1929 (sc-toggle-symbol "use-only-preferences")
1930 (sc-toggle-symbol "fixup-whitespace")
1932 (sc-setvar-symbol "preferred-attribution-list")
1933 (sc-setvar-symbol "preferred-header-style")
1934 (sc-setvar-symbol "mail-nuke-mail-headers")
1935 (sc-setvar-symbol "mail-header-nuke-list")
1936 (sc-setvar-symbol "cite-region-limit")
1938 (defun sc-T-describe ()
1941 Supercite provides a number of key bindings which simplify the process
1942 of setting or toggling certain variables controlling its operation.
1944 Note on function names in this list: all functions of the form
1945 `sc-S-<name>' actually call `sc-set-variable' on the corresponding
1946 `sc-<name>' variable. All functions of the form `sc-T-<name>' call
1947 `sc-toggle-var' on the corresponding `sc-<name>-p' variable.
1951 (describe-function 'sc-T-describe))
1953 (defun sc-set-mode-string ()
1954 "Update the minor mode string to show state of Supercite."
1955 (setq sc-mode-string
1957 (if (or sc-auto-fill-region-p
1958 sc-fixup-whitespace-p)
1960 (if sc-auto-fill-region-p "f" "")
1961 (if sc-fixup-whitespace-p "w" "")
1965 ;; ======================================================================
1966 ;; published interface to mail and news readers
1969 (defun sc-cite-original ()
1970 "Workhorse citing function which performs the initial citation.
1971 This is callable from the various mail and news readers' reply
1972 function according to the agreed upon standard. See `\\[sc-describe]'
1973 for more details. `sc-cite-original' does not do any yanking of the
1974 original message but it does require a few things:
1976 1) The reply buffer is the current buffer.
1978 2) The original message has been yanked and inserted into the
1981 3) Verbose mail headers from the original message have been
1982 inserted into the reply buffer directly before the text of the
1985 4) Point is at the beginning of the verbose headers.
1987 5) Mark is at the end of the body of text to be cited.
1989 For Emacs 19's, the region need not be active (and typically isn't
1990 when this function is called. Also, the hook `sc-pre-hook' is run
1991 before, and `sc-post-hook' is run after the guts of this function."
1992 (run-hooks 'sc-pre-hook)
1994 ;; before we do anything, we want to insert the supercite keymap so
1995 ;; we can proceed from here
1996 (and sc-mode-map-prefix
1997 (local-set-key sc-mode-map-prefix sc-mode-map))
1999 ;; hack onto the minor mode alist, if it hasn't been done before,
2000 ;; then turn on the minor mode. also, set the minor mode string with
2001 ;; the values of fill and fixup whitespace variables
2002 (if (not (get 'minor-mode-alist 'sc-minor-mode))
2004 (put 'minor-mode-alist 'sc-minor-mode 'sc-minor-mode)
2005 (setq minor-mode-alist
2006 (cons '(sc-minor-mode sc-mode-string) minor-mode-alist))
2008 (setq sc-minor-mode t)
2009 (sc-set-mode-string)
2013 ;; grab point and mark since the region is probably not active when
2014 ;; this function gets automatically called. we want point to be a
2015 ;; mark so any deleting before point works properly
2016 (let* ((zmacs-regions nil) ; for Lemacs
2017 (mark-active t) ; for Emacs
2018 (point (point-marker))
2019 (mark (copy-marker (mark-marker))))
2021 ;; make sure point comes before mark, not all functions are
2028 ;; first process mail headers, and populate sc-mail-info
2029 (sc-mail-process-headers point mark)
2031 ;; now get possible attributions
2032 (sc-attribs-chop-address (or (sc-mail-field "from")
2033 (sc-mail-field "reply")
2034 (sc-mail-field "reply-to")
2035 (sc-mail-field "sender")))
2036 ;; select the attribution
2037 (sc-select-attribution)
2039 ;; cite the region, but first check the value of sc-cite-region-limit
2040 (let ((linecnt (count-lines point mark)))
2041 (and sc-cite-region-limit
2042 (if (or (not (numberp sc-cite-region-limit))
2043 (<= linecnt sc-cite-region-limit))
2045 ;; cite the region and insert the header rewrite
2046 (sc-cite-region point mark)
2048 (let ((sc-eref-style (or sc-preferred-header-style 0)))
2049 (if sc-electric-references-p
2050 (sc-electric-mode sc-eref-style)
2051 (sc-eref-insert-selected t))))
2054 "Region not cited. %d lines exceeds sc-cite-region-limit: %d"
2055 linecnt sc-cite-region-limit))))
2057 ;; finally, free the point-marker
2058 (set-marker point nil)
2059 (set-marker mark nil)
2061 (run-hooks 'sc-post-hook)
2062 ;; post hook could have changed the variables
2063 (sc-set-mode-string))
2066 ;; ======================================================================
2067 ;; bug reporting and miscellaneous commands
2069 (defun sc-open-line (arg)
2070 "Like `open-line', but insert the citation prefix at the front of the line.
2071 With numeric ARG, inserts that many new lines."
2074 (let ((start (point))
2075 (prefix (or (progn (beginning-of-line)
2076 (if (looking-at (sc-cite-regexp))
2088 (defun sc-insert-citation (arg)
2089 "Insert citation string at beginning of current line if not already cited.
2090 With `\\[universal-argument]' insert citation even if line is already
2095 (if (or (not (looking-at (sc-cite-regexp)))
2096 (looking-at "^[ \t]*$")
2098 (insert (sc-mail-field "sc-citation"))
2099 (error "Line is already cited."))))
2101 (defun sc-version (arg)
2102 "Echo the current version of Supercite in the minibuffer.
2103 With \\[universal-argument] (universal-argument), or if run non-interactively,
2104 inserts the version string in the current buffer instead."
2106 (let ((verstr (format "Using Supercite.el %s" sc-version)))
2108 (not (interactive-p)))
2109 (insert "`sc-version' says: " verstr)
2112 (defun sc-describe ()
2114 Supercite is a package which provides a flexible mechanism for citing
2115 email and news replies. Please see the associated texinfo file for
2118 (describe-function 'sc-describe))
2120 (defun sc-submit-bug-report ()
2121 "Submit a bug report on Supercite via mail."
2125 (y-or-n-p "Do you want to submit a report on Supercite? ")
2126 (reporter-submit-bug-report
2128 (concat "Supercite version " sc-version)
2130 'sc-attrib-selection-list
2131 'sc-auto-fill-region-p
2132 'sc-blank-lines-after-headers
2134 'sc-citation-delimiter
2135 'sc-citation-separator
2136 'sc-citation-leader-regexp
2137 'sc-citation-root-regexp
2138 'sc-citation-nonnested-root-regexp
2139 'sc-citation-delimiter-regexp
2140 'sc-citation-separator-regexp
2141 'sc-cite-region-limit
2142 'sc-confirm-always-p
2143 'sc-default-attribution
2144 'sc-default-author-name
2146 'sc-electric-circular-p
2147 'sc-electric-references-p
2148 'sc-fixup-whitespace-p
2149 'sc-mail-warn-if-non-rfc822-p
2151 'sc-name-filter-alist
2152 'sc-nested-citation-p
2153 'sc-nuke-mail-headers
2154 'sc-nuke-mail-header-list
2155 'sc-preferred-attribution-list
2156 'sc-preferred-header-style
2157 'sc-reference-tag-string
2158 'sc-rewrite-header-list
2160 'sc-use-only-preference-p
2165 (provide 'supercite)
2166 (run-hooks 'sc-load-hook)
2168 ;;; supercite.el ends here