From c0c12587c1879d2dcd28e7f7b5fcf5017634fe98 Mon Sep 17 00:00:00 2001 From: teranisi Date: Wed, 12 Dec 2001 10:30:46 +0000 Subject: [PATCH] * wl-demo.el (wl-demo-icon-name): Use X'mas logo on Dec 25 too. * elmo-nmz.el (elmo-map-folder-list-message-locations): Allow "file://..." index. * NEWS, NEWS.ja: Changed order. --- ChangeLog | 4 ++++ NEWS | 10 +++++----- NEWS.ja | 10 +++++----- elmo/ChangeLog | 3 +++ elmo/elmo-nmz.el | 2 +- wl/ChangeLog | 4 ++++ wl/wl-demo.el | 2 +- 7 files changed, 23 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index 1a3d003..813478a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-12-12 Yuuichi Teranishi + + * NEWS, NEWS.ja: Changed order. + 2001-12-12 Katsumi Yamaoka * WL-MK (install-wl-icons): Install *.img files for Emacs 21. diff --git a/NEWS b/NEWS index 43f3cdd..f561a93 100644 --- a/NEWS +++ b/NEWS @@ -7,6 +7,11 @@ Wanderlust NEWS -- User-visible changes in Wanderlust. ** Wanderlust might not work with FLIM 1.14.2 and older. It is recommended to use FLIM 1.14.3 or newer and associated SEMI. +** If you set obsolete variables (e.g. renamed ones), Wanderlust shows warning + messages and urge you to change settings. + To suppress warning messages, set elmo-obsolete-variable-show-warnings to + nil. + ** Added new type of folders: shimbun folder Format: '@' 'virtual server name' '.' 'group name' @@ -46,11 +51,6 @@ Wanderlust NEWS -- User-visible changes in Wanderlust. But if you don't want to leave useless data on the disk, delete under .elmo/multi and .elmo/archive in advance. -** If you set obsolete variables (e.g. renamed ones), Wanderlust shows warning - messages and urge you to change settings. - To suppress warning messages, set elmo-obsolete-variable-show-warnings to - nil. - ** Variables named xxx-dir are renamed to xxx-directory. e.g. wl-icon-dir is renamed to wl-icon-directory. Take attention if you set for display of startup logo, etc. diff --git a/NEWS.ja b/NEWS.ja index 5af2012..309738d 100644 --- a/NEWS.ja +++ b/NEWS.ja @@ -7,6 +7,11 @@ Wanderlust NEWS (日本語版) -- User-visible changes in Wanderlust. ** FLIM 1.14.2 以前の FLIM ではうまく動かない場合があります。 FLIM 1.14.3 以降および対応した SEMI をインストールしてください。 +** 名前変更等で既に使われなくなった変数が設定されていると warning + が表示されるようになりました。 + warning の表示を抑制するには、変数 elmo-obsolete-variable-show-warnings を + nil にしてください。 + ** 新規フォルダ shimbun フォルダが追加されました。 書式: '@' '仮想サーバ名' '.' 'グループ名' @@ -47,11 +52,6 @@ Wanderlust NEWS (日本語版) -- User-visible changes in Wanderlust. そのままでも問題ありませんが、ディスクに無駄なデータを残したくない方は .elmo/multi, .elmo/archive 以下をあらかじめ削除しておいてください。 -** 名前変更等で既に使われなくなった変数が設定されていると warning - がでるようになりました。 - warning の表示を抑制するには、変数 elmo-obsolete-variable-show-warnings を - nil にしてください。 - ** xxx-dir という名前の変数は xxx-directory という名前に変更されました。 例えば、wl-icon-dir は wl-icon-directory に変更されています。 Emacs21 で logo 表示などの設定している方は特に注意してください。 diff --git a/elmo/ChangeLog b/elmo/ChangeLog index 1af19b4..5889ce4 100644 --- a/elmo/ChangeLog +++ b/elmo/ChangeLog @@ -1,5 +1,8 @@ 2001-12-12 Yuuichi Teranishi + * elmo-nmz.el (elmo-map-folder-list-message-locations): Allow + "file://..." index. + * elmo-pop3.el (elmo-pop3-read-response): Set timeout argument of accept-process-output as 1. (elmo-pop3-read-contents): Ditto. diff --git a/elmo/elmo-nmz.el b/elmo/elmo-nmz.el index e690a8e..5392a62 100644 --- a/elmo/elmo-nmz.el +++ b/elmo/elmo-nmz.el @@ -233,7 +233,7 @@ If the value is a list, all elements are used as index paths for namazu." (goto-char (point-min)) (while (not (eobp)) (beginning-of-line) - (setq bol (point)) + (setq bol (if (looking-at "^file://") (match-end 0)(point))) (end-of-line) (setq locations (cons (buffer-substring bol (point)) locations)) (forward-line 1)) diff --git a/wl/ChangeLog b/wl/ChangeLog index a9e8f41..b9e2041 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,7 @@ +2001-12-12 Yuuichi Teranishi + + * wl-demo.el (wl-demo-icon-name): Use X'mas logo on Dec 25 too. + 2001-12-12 Katsumi Yamaoka * wl-demo.el (wl-demo-image-type-alist): Add bitmap, prefer xbm diff --git a/wl/wl-demo.el b/wl/wl-demo.el index e66c190..72bdb9f 100644 --- a/wl/wl-demo.el +++ b/wl/wl-demo.el @@ -41,7 +41,7 @@ (defconst wl-demo-icon-name (concat "wl-" (wl-version-status) - (if (string-match "^... Dec \\([ 1][0-9]\\|2[0-4]\\)" + (if (string-match "^... Dec \\([ 1][0-9]\\|2[0-5]\\)" (current-time-string)) "-xmas-logo" "-logo")) -- 1.7.10.4