comparison lisp/gnus/message.el @ 91239:2fcaae6177a5

Merge from emacs--devo--0 Revision: emacs@sv.gnu.org/emacs--unicode--0--patch-300
author Miles Bader <miles@gnu.org>
date Sun, 16 Dec 2007 05:08:49 +0000
parents 53108e6cea98 6207f5a83057
children 56a72e2bd635
comparison
equal deleted inserted replaced
91238:5cf14a2107b5 91239:2fcaae6177a5
29 ;; consists mainly of large chunks of code from the sendmail.el, 29 ;; consists mainly of large chunks of code from the sendmail.el,
30 ;; gnus-msg.el and rnewspost.el files. 30 ;; gnus-msg.el and rnewspost.el files.
31 31
32 ;;; Code: 32 ;;; Code:
33 33
34 (eval-and-compile
35 (unless (fboundp 'declare-function) (defmacro declare-function (&rest r))))
34 (eval-when-compile 36 (eval-when-compile
35 (require 'cl)) 37 (require 'cl))
36 38
37 (require 'hashcash) 39 (require 'hashcash)
38 (require 'canlock) 40 (require 'canlock)
39 (require 'mailheader) 41 (require 'mailheader)
40 (require 'gmm-utils) 42 (require 'gmm-utils)
41 (require 'nnheader) 43 (require 'nnheader)
2466 (interactive) 2468 (interactive)
2467 (let ((start (point))) 2469 (let ((start (point)))
2468 (message-skip-to-next-address) 2470 (message-skip-to-next-address)
2469 (kill-region start (point)))) 2471 (kill-region start (point))))
2470 2472
2473
2474 (autoload 'Info-goto-node "info")
2471 2475
2472 (defun message-info (&optional arg) 2476 (defun message-info (&optional arg)
2473 "Display the Message manual. 2477 "Display the Message manual.
2474 2478
2475 Prefixed with one \\[universal-argument], display the Emacs MIME manual. 2479 Prefixed with one \\[universal-argument], display the Emacs MIME manual.
3693 (defun message-cite-original () 3697 (defun message-cite-original ()
3694 "Cite function in the standard Message manner." 3698 "Cite function in the standard Message manner."
3695 (message-cite-original-1 nil)) 3699 (message-cite-original-1 nil))
3696 3700
3697 (defvar gnus-extract-address-components) 3701 (defvar gnus-extract-address-components)
3702
3703 (autoload 'format-spec "format-spec")
3698 3704
3699 (defun message-insert-formatted-citation-line (&optional from date) 3705 (defun message-insert-formatted-citation-line (&optional from date)
3700 "Function that inserts a formatted citation line. 3706 "Function that inserts a formatted citation line.
3701 3707
3702 See `message-citation-line-format'." 3708 See `message-citation-line-format'."
7472 :group 'message 7478 :group 'message
7473 :link '(custom-manual "(message)Various Commands") 7479 :link '(custom-manual "(message)Various Commands")
7474 :type '(choice (const nil) 7480 :type '(choice (const nil)
7475 function)) 7481 function))
7476 7482
7483 (declare-function mail-abbrev-in-expansion-header-p "mailabbrev" ())
7484
7477 (defun message-tab () 7485 (defun message-tab ()
7478 "Complete names according to `message-completion-alist'. 7486 "Complete names according to `message-completion-alist'.
7479 Execute function specified by `message-tab-body-function' when not in 7487 Execute function specified by `message-tab-body-function' when not in
7480 those headers." 7488 those headers."
7481 (interactive) 7489 (interactive)