+2003-09-02 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * wl-mime.el (wl-draft-preview-message): Use actual value for
+ attributes; Fix for small window.
+
2003-08-28 Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
* wl-refile.el (wl-refile-get-field-value): Call
(interactive)
(let* (wl-recipients
(orig-buffer (current-buffer))
+ (wl-envelope-from (or wl-envelope-from
+ (wl-address-header-extract-address wl-from)))
+ (wl-smtp-posting-server
+ (or wl-smtp-posting-server (progn (require 'smtp) smtp-server)
+ "localhost"))
+ (wl-smtp-posting-port (or wl-smtp-posting-port smtp-service))
(current-point (point))
(config-exec-flag wl-draft-config-exec-flag)
(parent-folder wl-draft-parent-folder)
wl-draft-preview-attributes-buffer-name)))))
(if (not wl-draft-preview-attributes)
(message (concat "Recipients: " wl-recipients))
-; (ignore-errors ; in case when the window is too small
+ (ignore-errors ; in case when the window is too small
(let* ((cur-win (selected-window))
(size (min
(- (window-height cur-win)
"\n"))
(goto-char (point-min))
(wl-highlight-headers)))
- (select-window cur-win)))));)
+ (select-window cur-win))))))
(defalias 'wl-draft-caesar-region 'mule-caesar-region)