projects
/
elisp
/
mu-cite.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
effb85f
)
(mu-cite-get-field-value): Use `if' instead of `when'.
author
morioka
<morioka>
Tue, 20 Jul 1999 04:53:42 +0000
(
04:53
+0000)
committer
morioka
<morioka>
Tue, 20 Jul 1999 04:53:42 +0000
(
04:53
+0000)
mu-cite.el
patch
|
blob
|
history
diff --git
a/mu-cite.el
b/mu-cite.el
index
7c95678
..
a60c8de
100644
(file)
--- a/
mu-cite.el
+++ b/
mu-cite.el
@@
-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