diff options
| author | Glenn Morris | 2007-11-28 04:02:41 +0000 |
|---|---|---|
| committer | Glenn Morris | 2007-11-28 04:02:41 +0000 |
| commit | a445af6b24d05464fed0e6cec2715194b4540843 (patch) | |
| tree | 09d9f2b25d27a0c50d7144d4664a28f4dc4cd581 | |
| parent | 4b9be680a44716592d24162c3a042e00db6ff91e (diff) | |
| download | emacs-a445af6b24d05464fed0e6cec2715194b4540843.tar.gz emacs-a445af6b24d05464fed0e6cec2715194b4540843.zip | |
Delete meaningless header keys.
(sc-version): Redefine as an alias for emacs-version.
(sc-help-address): Remove.
(sc-version): Use emacs-version rather than sc-version.
(sc-submit-bug-report): Redefine as an alias for report-emacs-bug.
| -rw-r--r-- | lisp/mail/supercite.el | 51 |
1 files changed, 2 insertions, 49 deletions
diff --git a/lisp/mail/supercite.el b/lisp/mail/supercite.el index 61e7d0a00eb..412b5d6a4c8 100644 --- a/lisp/mail/supercite.el +++ b/lisp/mail/supercite.el | |||
| @@ -6,11 +6,8 @@ | |||
| 6 | ;; Author: 1993 Barry A. Warsaw <bwarsaw@python.org> | 6 | ;; Author: 1993 Barry A. Warsaw <bwarsaw@python.org> |
| 7 | ;; Maintainer: Glenn Morris <rgm@gnu.org> | 7 | ;; Maintainer: Glenn Morris <rgm@gnu.org> |
| 8 | ;; Created: February 1993 | 8 | ;; Created: February 1993 |
| 9 | ;; Last Modified: 1993/09/22 18:58:46 | ||
| 10 | ;; Keywords: mail, news | 9 | ;; Keywords: mail, news |
| 11 | 10 | ||
| 12 | ;; supercite.el revision: 3.54 | ||
| 13 | |||
| 14 | ;; This file is part of GNU Emacs. | 11 | ;; This file is part of GNU Emacs. |
| 15 | 12 | ||
| 16 | ;; GNU Emacs is free software; you can redistribute it and/or modify | 13 | ;; GNU Emacs is free software; you can redistribute it and/or modify |
| @@ -510,10 +507,7 @@ string." | |||
| 510 | ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | 507 | ;; ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ |
| 511 | ;; end user configuration variables | 508 | ;; end user configuration variables |
| 512 | 509 | ||
| 513 | (defconst sc-version "3.1" | 510 | (define-obsolete-variable-alias 'sc-version 'emacs-version "23.1") |
| 514 | "Supercite version number.") | ||
| 515 | (defconst sc-help-address "bug-supercite@gnu.org" | ||
| 516 | "Address accepting submissions of bug reports.") | ||
| 517 | 511 | ||
| 518 | (defvar sc-mail-info nil | 512 | (defvar sc-mail-info nil |
| 519 | "Alist of mail header information gleaned from reply buffer.") | 513 | "Alist of mail header information gleaned from reply buffer.") |
| @@ -2023,48 +2017,7 @@ more information. Info node `(SC)Top'." | |||
| 2023 | (interactive) | 2017 | (interactive) |
| 2024 | (describe-function 'sc-describe)) | 2018 | (describe-function 'sc-describe)) |
| 2025 | 2019 | ||
| 2026 | (defun sc-submit-bug-report () | 2020 | (define-obsolete-function-alias 'sc-submit-bug-report 'report-emacs-bug "23.1") |
| 2027 | "Submit a bug report on Supercite via mail." | ||
| 2028 | (interactive) | ||
| 2029 | (require 'reporter) | ||
| 2030 | (and | ||
| 2031 | (y-or-n-p "Do you want to submit a report on Supercite? ") | ||
| 2032 | (reporter-submit-bug-report | ||
| 2033 | sc-help-address | ||
| 2034 | (concat "Supercite version " sc-version) | ||
| 2035 | (list | ||
| 2036 | 'sc-attrib-selection-list | ||
| 2037 | 'sc-auto-fill-region-p | ||
| 2038 | 'sc-blank-lines-after-headers | ||
| 2039 | 'sc-citation-leader | ||
| 2040 | 'sc-citation-delimiter | ||
| 2041 | 'sc-citation-separator | ||
| 2042 | 'sc-citation-leader-regexp | ||
| 2043 | 'sc-citation-root-regexp | ||
| 2044 | 'sc-citation-nonnested-root-regexp | ||
| 2045 | 'sc-citation-delimiter-regexp | ||
| 2046 | 'sc-citation-separator-regexp | ||
| 2047 | 'sc-cite-region-limit | ||
| 2048 | 'sc-confirm-always-p | ||
| 2049 | 'sc-default-attribution | ||
| 2050 | 'sc-default-author-name | ||
| 2051 | 'sc-downcase-p | ||
| 2052 | 'sc-electric-circular-p | ||
| 2053 | 'sc-electric-references-p | ||
| 2054 | 'sc-fixup-whitespace-p | ||
| 2055 | 'sc-mail-warn-if-non-rfc822-p | ||
| 2056 | 'sc-mumble | ||
| 2057 | 'sc-name-filter-alist | ||
| 2058 | 'sc-nested-citation-p | ||
| 2059 | 'sc-nuke-mail-headers | ||
| 2060 | 'sc-nuke-mail-header-list | ||
| 2061 | 'sc-preferred-attribution-list | ||
| 2062 | 'sc-preferred-header-style | ||
| 2063 | 'sc-reference-tag-string | ||
| 2064 | 'sc-rewrite-header-list | ||
| 2065 | 'sc-titlecue-regexp | ||
| 2066 | 'sc-use-only-preference-p | ||
| 2067 | )))) | ||
| 2068 | 2021 | ||
| 2069 | 2022 | ||
| 2070 | ;; useful stuff | 2023 | ;; useful stuff |