+2000-06-15 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * WL-ELS (ELMO-MODULES): Added `pldap'.
+
+2000-06-12 Yasushi ABE <yasushi@stbbs.net>
+
+ * utils/bbdb-wl.el (bbdb-extract-field-value): Decode with
+ multibyte-buffer.
+
2000-05-15 Katsumi Yamaoka <yamaoka@jpl.org>
* etc/icons/wl-logo.xpm: Reduced color.
+\f
2000-05-10 Yuuichi Teranishi <teranisi@gohome.org>
* 1.1.1 - "Purple Rain"
;;; WL-ELS -*-Emacs-Lisp-*-
-;;; Time-stamp: <00/03/01 09:58:40 teranisi>
+;;; Time-stamp: <00/06/14 23:51:29 teranisi>
;;;;;;;;;;;;;;;;;;;;; DO NOT EDIT THIS FILE ;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;; INTERNAL USE ONLY ;;;;;;;;;;;;;;;;;;;;;
elmo-localdir elmo-msgdb elmo-vars elmo2
elmo-cache elmo-multi elmo-filter elmo-pipe
elmo-dop elmo-pop3 elmo-localnews elmo-maildir
- elmo-date elmo-internal utf7
+ elmo-date elmo-internal utf7 pldap
))
\f
;;; @ bbdb-extract-field-value -- stolen from tm-bbdb.
;;;
(and (not (fboundp 'bbdb-extract-field-value-internal))
- (not (fboundp 'tm:bbdb-extract-field-value)) ;; tm-bbdb
;; (not (fboundp 'PLEASE_REPLACE_WITH_SEMI-BASED_MIME-BBDB)) ;; mime-bbdb
(progn
;; (require 'bbdb-hooks) ; not provided.
(or (fboundp 'bbdb-header-start)
(load "bbdb-hooks"))
(fset 'bbdb-extract-field-value-internal
- (symbol-function 'bbdb-extract-field-value))
+ (cond
+ ((fboundp 'tm:bbdb-extract-field-value)
+ (symbol-function 'tm:bbdb-extract-field-value))
+ (t (symbol-function 'bbdb-extract-field-value))))
(defun bbdb-extract-field-value (field)
(let ((value (bbdb-extract-field-value-internal field)))
- (and value
- (eword-decode-string value))))
+ (with-temp-buffer ; to keep raw buffer unibyte.
+ (elmo-set-buffer-multibyte
+ default-enable-multibyte-characters)
+ (and value
+ (eword-decode-string value)))))
))