From: kaoru Date: Sun, 24 Dec 2000 09:54:40 +0000 (+0000) Subject: * wl-version.el (wl-version-status-alist): Use `=' instead of X-Git-Tag: wl-2_4_1pre~33 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=0256fa39a0fd03a8edc1266b2b2cddcd541a856d;p=elisp%2Fwanderlust.git * wl-version.el (wl-version-status-alist): Use `=' instead of `eq'. --- diff --git a/wl/ChangeLog b/wl/ChangeLog index ccae2c0..f354d04 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,8 @@ +2000-12-24 TAKAHASHI Kaoru + + * wl-version.el (wl-version-status-alist): Use `=' instead of + `eq'. + 2000-11-27 Kenichi OKADA * wl.el (wl-check-environment): Additional check for diff --git a/wl/wl-version.el b/wl/wl-version.el index 3eecb2a..0d248b6 100644 --- a/wl/wl-version.el +++ b/wl/wl-version.el @@ -61,7 +61,7 @@ If ARG insert string at point." (message "%s" (wl-version t)))) (defvar wl-version-status-alist - '(((eq (% (nth 1 (product-version (product-find 'wl-version))) 2) 0) + '(((= (% (nth 1 (product-version (product-find 'wl-version))) 2) 0) . "stable") (t . "beta")) "An alist to define the version status.")