semi 0.72. semi-0_72
authormorioka <morioka>
Tue, 10 Mar 1998 18:08:11 +0000 (18:08 +0000)
committermorioka <morioka>
Tue, 10 Mar 1998 18:08:11 +0000 (18:08 +0000)
mu-cite.el

index eb99191..85975e0 100644 (file)
@@ -6,7 +6,7 @@
 ;;         MINOURA Makoto <minoura@netlaputa.or.jp>
 ;;         Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
 ;; Maintainer: Shuhei KOBAYASHI <shuhei-k@jaist.ac.jp>
-;; Version: $Revision: 7.49 $
+;; Version: $Revision: 7.48 $
 ;; Keywords: mail, news, citation
 
 ;; This file is part of MU (Message Utilities).
@@ -54,7 +54,7 @@
 ;;;
 
 (defconst mu-cite/RCS-ID
-  "$Id: mu-cite.el,v 7.49 1997/03/18 15:07:56 morioka Exp $")
+  "$Id: mu-cite.el,v 7.48 1997/03/10 06:13:17 shuhei-k Exp $")
 (defconst mu-cite/version (get-version-string mu-cite/RCS-ID))
 
 
@@ -95,8 +95,21 @@ Use this hook to add your own methods to `mu-cite/default-methods-alist'.")
 ;;; @ field
 ;;;
 
-(defvar mu-cite/get-field-value-method-alist nil
-  "Alist major-mode vs. function to get field-body of header.")
+(defvar mu-cite/get-field-value-method-alist
+  (list (cons 'mh-letter-mode
+             (function
+              (lambda (name)
+                (if (and (stringp mh-sent-from-folder)
+                         (numberp mh-sent-from-msg))
+                    (save-excursion
+                      (set-buffer mh-sent-from-folder)
+                      (set-buffer mh-show-buffer)
+                      (and (boundp 'mime::preview/article-buffer)
+                           (bufferp mime::preview/article-buffer)
+                           (set-buffer mime::preview/article-buffer))
+                      (std11-field-body name)
+                      ))
+                )))))
 
 (defun mu-cite/get-field-value (name)
   (or (std11-field-body name)