(wl-message-wheel-down): Ditto.
* acap.el (acap-read-passphrase): Use `ange-ftp-read-passwd'
if `read-passwd' is not defined.
+2001-09-13 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * acap.el (acap-read-passphrase): Use `ange-ftp-read-passwd'
+ if `read-passwd' is not defined.
+
2001-09-11 Yuuichi Teranishi <teranisi@gohome.org>
* elmo-pop3.el (elmo-pop3-list-location): Sort locations
(if (functionp 'read-passwd)
(read-passwd prompt)
(if (load "passwd" t)
- (read-passwd prompt))))))
+ (read-passwd prompt)
+ (autoload 'ange-ftp-read-passwd "ange-ftp")
+ (ange-ftp-read-passwd prompt))))))
;;; Debug.
(defvar acap-debug t)
+2001-09-13 Yuuichi Teranishi <teranisi@gohome.org>
+
+ * wl-mule.el (wl-message-wheel-up): Fixed.
+ (wl-message-wheel-down): Ditto.
+
2001-09-12 Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
* wl-draft.el (wl-draft-config-exec-sub): Fixed problem when
(defun wl-message-wheel-up (event)
(interactive "e")
- (if (string-match wl-message-buf-name (buffer-name))
+ (if (string-match (regexp-quote wl-message-buffer-cache-name)
+ (regexp-quote (buffer-name)))
(wl-message-next-page)
(let ((cur-buf (current-buffer))
proceed)
(defun wl-message-wheel-down (event)
(interactive "e")
- (if (string-match wl-message-buf-name (buffer-name))
+ (if (string-match (regexp-quote wl-message-buffer-cache-name)
+ (regexp-quote (buffer-name)))
(wl-message-prev-page)
(let ((cur-buf (current-buffer))
proceed)