* doc/wl-ja.texi, doc/wl.texi: Fixed description of wl-draft-use-cache.
authorteranisi <teranisi>
Thu, 21 Jun 2001 15:13:46 +0000 (15:13 +0000)
committerteranisi <teranisi>
Thu, 21 Jun 2001 15:13:46 +0000 (15:13 +0000)
(Pointed out by Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp>)

* 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.

doc/wl-ja.texi
doc/wl.texi
wl/ChangeLog
wl/wl-folder.el
wl/wl-vars.el

index 8b20c04..2bd9d54 100644 (file)
@@ -4249,7 +4249,7 @@ Non-nil \e$B$J$iJV?.%"%I%l%9$N\e(B @samp{To:}, @samp{Cc:} \e$B%U%#!<%k%I$KAj<j$N%U%
 @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
index 84f6ce3..db32ea5 100644 (file)
@@ -4274,7 +4274,7 @@ sent off-line.
 @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
index f2042fa..f0a1b5e 100644 (file)
@@ -1,3 +1,12 @@
+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.
+
 2001-06-20  Yuuichi Teranishi  <teranisi@gohome.org>
 
        * wl-summary.el (wl-summary-buffer-next-message-function): New
index 2f562d6..b712509 100644 (file)
@@ -640,7 +640,7 @@ Optional argument ARG is repeart count."
                        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))
@@ -2176,7 +2176,7 @@ Use `wl-subscribed-mailing-list'."
             (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))
index 49e8850..b9c8cf4 100644 (file)
 (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)