From: Reiner Steib Date: Mon, 5 Nov 2007 23:12:04 +0000 (+0000) Subject: (message-citation-line-function) X-Git-Url: http://cgit.sxemacs.org/?a=commitdiff_plain;h=6fe8ed9149db8ab29542631e075126bc9c9a9a32;p=gnus (message-citation-line-function) (message-insert-formatted-citation-line): Fix spelling of `message-insert-formated-citation-line'. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e3c6f04da..9ca5938d4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2007-11-05 Reiner Steib + + * message.el (message-citation-line-function) + (message-insert-formatted-citation-line): Fix spelling of + `message-insert-formated-citation-line'. + 2007-11-03 Reiner Steib * gnus-sum.el (gnus-summary-highlight): Mark as risky local variable. diff --git a/lisp/message.el b/lisp/message.el index 94b9442ed..0f7a43207 100644 --- a/lisp/message.el +++ b/lisp/message.el @@ -914,7 +914,7 @@ the signature is inserted." "*Function called to insert the \"Whomever writes:\" line. Predefined functions include `message-insert-citation-line' and -`message-insert-formated-citation-line' (see the variable +`message-insert-formatted-citation-line' (see the variable `message-citation-line-format'). Note that Gnus provides a feature where the reader can click on @@ -923,7 +923,7 @@ people who read your message will have to change their Gnus configuration. See the variable `gnus-cite-attribution-suffix'." :type '(choice (function-item :tag "plain" message-insert-citation-line) - (function-item :tag "formatted" message-insert-formated-citation-line) + (function-item :tag "formatted" message-insert-formatted-citation-line) (function :tag "Other")) :link '(custom-manual "(message)Insertion Variables") :group 'message-insertion) @@ -3686,14 +3686,14 @@ This function uses `mail-citation-hook' if that is non-nil." "Cite function in the standard Message manner." (message-cite-original-1 nil)) -(defun message-insert-formated-citation-line (&optional from date) +(defun message-insert-formatted-citation-line (&optional from date) "Function that inserts a formated citation line. See `message-citation-line-format'." ;; The optional args are for testing/debugging. They will disappear later. ;; Example: ;; (with-temp-buffer - ;; (message-insert-formated-citation-line + ;; (message-insert-formatted-citation-line ;; "John Doe " ;; (current-time)) ;; (buffer-string))