* wl-vars.el (wl-from): Use return value of function
authoryoichi <yoichi>
Fri, 25 Jan 2002 14:36:21 +0000 (14:36 +0000)
committeryoichi <yoichi>
Fri, 25 Jan 2002 14:36:21 +0000 (14:36 +0000)
  user-full-name instead of the variable user-full-name since
  XEmacs-20.4 doesn't set this variable.

wl/ChangeLog
wl/wl-vars.el

index 33b7287..cfe78ea 100644 (file)
@@ -1,3 +1,9 @@
+2002-01-25  Yoichi NAKAYAMA  <yoichi@eken.phys.nagoya-u.ac.jp>
+
+       * wl-vars.el (wl-from): Use return value of function
+       user-full-name instead of the variable user-full-name since
+       XEmacs-20.4 doesn't set this variable.
+
 2002-01-25  Yuuichi Teranishi  <teranisi@gohome.org>
 
        * wl.el (wl-other-frame): If wl-folder-use-frame is non-nil,
index 7b42425..6d848ce 100644 (file)
   "*Use SEMI or not.")
 
 (defcustom wl-from (and user-mail-address
-                       (concat (and user-full-name
+                       (concat (and (user-full-name)
                                     (concat (elmo-address-quote-specials
-                                             user-full-name)
+                                             (user-full-name))
                                             " "))
                                "<" user-mail-address ">"))
   "*From string used in draft."