@vindex wl-draft-use-cache
\e$B=i4|@_Dj$O\e(B @code{nil}\e$B!#Aw?.$9$k%a%C%;!<%8$r%-%c%C%7%e$9$k$+$I$&$+$r<($9%U\e(B
\e$B%i%0$G$9!#\e(BNon-nil \e$B$J$i%-%c%C%7%e$7$^$9!#$?$@$7\e(B @code{wl-insert-message-id}\e$B$,\e(B
-non-nil\e$B$N>l9g$O%-%c%C%7%e$5$l$^$;$s!#\e(B
+nil \e$B$N>l9g$O%-%c%C%7%e$5$l$^$;$s!#\e(B
@item wl-auto-flush-queue
@vindex wl-auto-flush-queue
@item wl-draft-use-cache
@vindex wl-draft-use-cache
The initial setting is @code{nil}. If the value is non-nil and
-@code{wl-insert-message-id} is non-nil, cache the message which is sent.
+@code{wl-insert-message-id} is nil, cache the message which is sent.
@item wl-auto-flush-queue
@vindex wl-auto-flush-queue
+2001-06-21 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * wl-vars.el (wl): Set custom-manual link as "wl-ja"
+ only if current language environment is japanese,
+
+ * wl-folder.el (wl-folder-jump-to-current-entity): Call
+ wl-folder-select-buffer when wl-summary-use-frame is non-nil.
+ (wl-folder-goto-folder-subr): Ditto.
+
+ * wl-draft.el (wl-draft-dispatch-message): Call
+ `elmo-file-cache-get-path'.
+
2001-06-20 Yuuichi Teranishi <teranisi@gohome.org>
* wl-summary.el (wl-summary-cursor-move): If return value of
(if wl-draft-use-cache
(let ((id (std11-field-body "Message-ID"))
(elmo-enable-disconnected-operation t))
- (elmo-file-cache-save id nil)))
+ (elmo-file-cache-save (elmo-file-cache-get-path id)
+ nil)))
;; If one unplugged, append queue.
(when (and unplugged-via
wl-sent-message-modified)
wl-folder-buffer-cur-entity-id)))
(let ((summary-buf (wl-summary-get-buffer-create fld-name arg))
error-selecting)
- (if wl-stay-folder-window
+ (if (or wl-stay-folder-window wl-summary-use-frame)
(wl-folder-select-buffer summary-buf)
(if (and summary-buf
(get-buffer-window summary-buf))
(setq id (wl-folder-get-entity-id entity)))
(wl-folder-set-current-entity-id id))
(setq summary-buf (wl-summary-get-buffer-create fld-name sticky))
- (if wl-stay-folder-window
+ (if (or wl-stay-folder-window wl-summary-use-frame)
(wl-folder-select-buffer summary-buf)
(if (and summary-buf
(get-buffer-window summary-buf))
(defgroup wl nil
"Wanderlust, a news and mail reading software."
:tag "Wanderlust"
- :link '(custom-manual "(wl-ja)Top")
+ :link '(custom-manual
+ (if (and (boundp 'current-language-environment)
+ (string-equal "Japanese"
+ (symbol-value 'current-language-environment)))
+ "(wl-ja)Top"
+ "(wl)Top"))
:group 'news
:group 'mail)