From: tomo Date: Thu, 19 Aug 1999 05:02:39 +0000 (+0000) Subject: (bbdb-extract-field-value): Use `eword-decode-string' instead of X-Git-Tag: tm-8_1~19 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=b77b17617ad6e2d752ffa07cc4232a54c6ebae81;p=elisp%2Ftm.git (bbdb-extract-field-value): Use `eword-decode-string' instead of `mime-eword/decode-string'. (tm-bbdb/canonicalize-full-name-methods): Likewise. --- diff --git a/tm-bbdb.el b/tm-bbdb.el index 06ea9ef..32526fc 100644 --- a/tm-bbdb.el +++ b/tm-bbdb.el @@ -29,7 +29,7 @@ ;;; Code: (require 'std11) -(require 'tm-ew-d) +(require 'eword-decode) (require 'tm-view) (if (module-installed-p 'bbdb-com) (require 'bbdb-com) @@ -110,7 +110,7 @@ For framepop users: If empty, `framepop-banish' is used instead.") (defun bbdb-extract-field-value (field) (let ((value (tm:bbdb-extract-field-value field))) (and value - (mime-eword/decode-string value)))) + (eword-decode-string value)))) )) @@ -142,7 +142,7 @@ For framepop users: If empty, `framepop-banish' is used instead.") )) (defvar tm-bbdb/canonicalize-full-name-methods - '(mime-eword/decode-string + '(eword-decode-string tm-bbdb/canonicalize-dots tm-bbdb/canonicalize-spaces))