From: kaoru Date: Wed, 26 Sep 2001 09:32:30 +0000 (+0000) Subject: * wl-vars.el (toplevel): Use `elmo-define-obsolete-variable' X-Git-Tag: wl-2_7_5~36 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=20fab7776b12db2aa3e9fbd624d4808e8a89cf01;p=elisp%2Fwanderlust.git * wl-vars.el (toplevel): Use `elmo-define-obsolete-variable' instead of `make-obsolete-variable'. * wl-refile.el (toplevel): Ditto. --- diff --git a/wl/ChangeLog b/wl/ChangeLog index 81a5715..574e8fa 100644 --- a/wl/ChangeLog +++ b/wl/ChangeLog @@ -1,3 +1,9 @@ +2001-09-26 TAKAHASHI Kaoru + + * wl-vars.el (toplevel): Use `elmo-define-obsolete-variable' + instead of `make-obsolete-variable'. + * wl-refile.el (toplevel): Ditto. + 2001-09-26 Yuuichi Teranishi * wl-draft.el (wl-draft-yank-from-mail-reply-buffer): Push mark diff --git a/wl/wl-refile.el b/wl/wl-refile.el index 8155e93..ef115c0 100644 --- a/wl/wl-refile.el +++ b/wl/wl-refile.el @@ -152,8 +152,9 @@ wl-refile-guess-by-history) "*Functions in this list are used for guessing refile destination folder.") -(defvar wl-refile-guess-func-list wl-refile-guess-functions) -(make-obsolete-variable 'wl-refile-guess-func-list 'wl-refile-guess-functions) +;; 2000-11-05: *-func-list -> *-functions +(elmo-define-obsolete-variable 'wl-refile-guess-func-list + 'wl-refile-guess-functions) (defun wl-refile-guess (entity) (let ((flist wl-refile-guess-functions) guess) diff --git a/wl/wl-vars.el b/wl/wl-vars.el index 1603f46..b747371 100644 --- a/wl/wl-vars.el +++ b/wl/wl-vars.el @@ -2296,18 +2296,6 @@ a symbol `bitmap', `xbm' or `xpm' in order to force the image format." (defvar wl-prog-uudecode-no-stdout-option t "*If non-nil, uudecode program don't have option for output to stdout.") -;; Obsolete variables. for compatibility. -(defvar wl-address-filename wl-address-file) -(make-obsolete-variable 'wl-address-filename 'wl-address-file) -(defvar wl-score-default-file-name wl-score-default-file) -(make-obsolete-variable 'wl-score-default-file-name 'wl-score-default-file) -(defvar wl-draft-prepared-config-alist nil) -(make-obsolete-variable 'wl-draft-prepared-config-alist 'wl-draft-config-alist) -(defvar wl-score-files-directory wl-score-files-dir) -(make-obsolete-variable 'wl-score-files-directory 'wl-score-files-dir) -(defvar wl-summary-temp-above wl-summary-target-above) -(make-obsolete-variable 'wl-summary-temp-above 'wl-summary-target-above) - ;; plug (defvar wl-plugged-plug-on "ON") (defvar wl-plugged-plug-off "--") @@ -2316,7 +2304,9 @@ a symbol `bitmap', `xbm' or `xpm' in order to force the image format." (defvar wl-plugged-port-indent 4) (defvar wl-plugged-queue-status-column 25) -;; Obsolete variables. +;;;; Obsolete variables. + +;; 2001-02-27: *-func -> *-function (elmo-define-obsolete-variable 'wl-summary-from-func 'wl-summary-from-function) (elmo-define-obsolete-variable 'wl-summary-subject-func @@ -2344,6 +2334,26 @@ a symbol `bitmap', `xbm' or `xpm' in order to force the image format." (elmo-define-obsolete-variable 'wl-highlight-signature-search-func 'wl-highlight-signature-search-function) +;; 2000-01-25: temp mark -> target mark +(elmo-define-obsolete-variable 'wl-summary-temp-above + 'wl-summary-target-above) + +;; 2000-03-08 +(elmo-define-obsolete-variable 'wl-score-files-directory + 'wl-score-files-dir) + +;; 1999-11-07: Unified with `wl-draft-config-alist'. +(defvar wl-draft-prepared-config-alist nil) +(make-obsolete-variable 'wl-draft-prepared-config-alist + 'wl-draft-config-alist) + +;; 1999-10-10 +(elmo-define-obsolete-variable 'wl-address-filename + 'wl-address-file) +(elmo-define-obsolete-variable 'wl-score-default-file-name + 'wl-score-default-file) + + (require 'product) (product-provide (provide 'wl-vars) (require 'wl-version))