From 4ed5e3b5bacfd9e4e9c4c4b9f23ae18858a12a1f Mon Sep 17 00:00:00 2001 From: teranisi Date: Thu, 18 May 2000 08:05:27 +0000 Subject: [PATCH] (wl-draft-add-references): New function. (wl-draft-yank-from-mail-reply-buffer): Use it. (wl-draft-insert-current-message): Bind `wl-draft-add-references' as nil. --- wl/wl-draft.el | 32 +++++++++++++++++++++++++++++--- 1 file changed, 29 insertions(+), 3 deletions(-) diff --git a/wl/wl-draft.el b/wl/wl-draft.el index e84b5b1..0383235 100644 --- a/wl/wl-draft.el +++ b/wl/wl-draft.el @@ -4,7 +4,7 @@ ;; Author: Yuuichi Teranishi ;; Keywords: mail, net news -;; Time-stamp: <2000-03-22 19:12:26 teranisi> +;; Time-stamp: <2000-05-18 14:14:17 teranisi> ;; This file is part of Wanderlust (Yet Another Message Interface on Emacsen). @@ -388,11 +388,34 @@ the `wl-smtp-features' variable." (setq wl-draft-reply-buffer buf)) (run-hooks 'wl-reply-hook)) +(defun wl-draft-add-references () + (let* ((mes-id (save-excursion + (set-buffer mail-reply-buffer) + (std11-field-body "message-id"))) + (ref (std11-field-body "References")) + (ref-list nil) (st nil)) + (when (and mes-id ref) + (while (string-match "<[^>]+>" ref st) + (setq ref-list + (cons (substring ref (match-beginning 0) (setq st (match-end 0))) + ref-list))) + (if (and ref-list + (member mes-id ref-list)) + (setq mes-id nil))) + (when mes-id + (save-excursion + (when (mail-position-on-field "References") + (forward-line) + (while (looking-at "^[ \t]") + (forward-line)) + (setq mes-id (concat "\t" mes-id "\n"))) + (insert mes-id)) + t))) + (defun wl-draft-yank-from-mail-reply-buffer (decode-it &optional ignored-fields) (interactive) (save-restriction - (current-buffer) (narrow-to-region (point)(point)) (insert (save-excursion @@ -414,6 +437,9 @@ the `wl-smtp-features' variable." (t (and wl-draft-cite-func (funcall wl-draft-cite-func)))) ; default cite (run-hooks 'wl-draft-cited-hook) + (and wl-draft-add-references + (if (wl-draft-add-references) + (wl-highlight-headers))) (if wl-highlight-body-too (wl-highlight-body-region beg (point-max))))) @@ -500,7 +526,7 @@ the `wl-smtp-features' variable." (interactive) (let ((mail-reply-buffer (wl-message-get-original-buffer)) mail-citation-hook mail-yank-hooks - wl-draft-cite-func) + wl-draft-add-references wl-draft-cite-func) (if (eq 0 (save-excursion (set-buffer mail-reply-buffer) -- 1.7.10.4