(mu-cite-get-field-value): Use `if' instead of `when'.
authormorioka <morioka>
Tue, 20 Jul 1999 04:53:42 +0000 (04:53 +0000)
committermorioka <morioka>
Tue, 20 Jul 1999 04:53:42 +0000 (04:53 +0000)
mu-cite.el

index 7c95678..a60c8de 100644 (file)
@@ -228,8 +228,8 @@ If the field is not found in the header, a method function which is
 registered in variable `mu-cite-get-field-value-method-alist' is called."
   (or (std11-field-body name)
       (let ((method (assq major-mode mu-cite-get-field-value-method-alist)))
-       (when method
-         (funcall (cdr method) name)))))
+       (if method
+           (funcall (cdr method) name)))))
 
 
 ;;; @ item methods