summaryrefslogtreecommitdiff
path: root/lisp/mail/supercite.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-02-27 04:34:05 +0000
committerGlenn Morris <rgm@gnu.org>2008-02-27 04:34:05 +0000
commit34b5f6df51ef655c4719ce2f0bf57440b21a7c66 (patch)
tree2c2157460d5acc525fe45a3c93042c9a21aa2abc /lisp/mail/supercite.el
parent18a9f8d9bc1a3ce57253ca05a2910b8d693ce08e (diff)
downloademacs-34b5f6df51ef655c4719ce2f0bf57440b21a7c66.tar.gz
(sc-cite-original): Doc fix.
(sc-version): Make obsolete. (sc-describe): Show the SC info page. Make obsolete.
Diffstat (limited to 'lisp/mail/supercite.el')
-rw-r--r--lisp/mail/supercite.el20
1 files changed, 10 insertions, 10 deletions
diff --git a/lisp/mail/supercite.el b/lisp/mail/supercite.el
index 6cb6e8a18ff..0e7fa99f36a 100644
--- a/lisp/mail/supercite.el
+++ b/lisp/mail/supercite.el
@@ -1904,9 +1904,9 @@ original message but it does require a few things:
5) Mark is at the end of the body of text to be cited.
-For Emacs 19's, the region need not be active (and typically isn't
-when this function is called. Also, the hook `sc-pre-hook' is run
-before, and `sc-post-hook' is run after the guts of this function."
+The region need not be active (and typically isn't when this
+function is called). Also, the hook `sc-pre-hook' is run before,
+and `sc-post-hook' is run after the guts of this function."
(run-hooks 'sc-pre-hook)
(sc-minor-mode 1)
@@ -1983,8 +1983,7 @@ With numeric ARG, inserts that many new lines."
(while (< 0 arg)
(insert prefix)
(forward-line 1)
- (setq arg (1- arg))
- ))))
+ (setq arg (1- arg))))))
(defun sc-insert-citation (arg)
"Insert citation string at beginning of current line if not already cited.
@@ -2009,13 +2008,14 @@ inserts the version string in the current buffer instead."
(message verstr)
(insert "`sc-version' says: " verstr))))
+(make-obsolete 'sc-version 'emacs-version "23.1")
+
(defun sc-describe ()
- "
-Supercite is a package which provides a flexible mechanism for citing
-email and news replies. Please see the associated texinfo file for
-more information. Info node `(SC)Top'."
+ "Read the Supercite info node."
(interactive)
- (describe-function 'sc-describe))
+ (info "(SC)top"))
+
+(make-obsolete 'sc-describe "Read the SC manual using `info'" "23.1")
(define-obsolete-function-alias 'sc-submit-bug-report 'report-emacs-bug "23.1")