From b77b17617ad6e2d752ffa07cc4232a54c6ebae81 Mon Sep 17 00:00:00 2001 From: tomo Date: Thu, 19 Aug 1999 05:02:39 +0000 Subject: [PATCH] (bbdb-extract-field-value): Use `eword-decode-string' instead of `mime-eword/decode-string'. (tm-bbdb/canonicalize-full-name-methods): Likewise. --- tm-bbdb.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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)) -- 1.7.10.4