* wl-draft.el (wl-draft-send-confirm): Discard input before
confirmation.
+2004-03-27 Yuuichi Teranishi <teranisi@rosita>
+
+ * wl-util.el (wl-list-diff): Remove unused function.
+
+ * wl-draft.el (wl-draft-send-confirm): Discard input before
+ confirmation.
+
2004-03-13 Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
* wl-vars.el (wl-summary-persistent-mark-priority-list): Changed
(goto-char (point-min)) ; to show recipients in header
(catch 'done
(while t
+ (discard-input)
(message "Send current draft? <y/n/j(down)/k(up)> ")
(setq answer (let ((cursor-in-echo-area t)) (read-char)))
(cond
(setq loop (- loop 1)))
ret-val))
-(defun wl-list-diff (list1 list2)
- "Return a list of elements of LIST1 that do not appear in LIST2."
- (let ((list1 (copy-sequence list1)))
- (while list2
- (setq list1 (delq (car list2) list1))
- (setq list2 (cdr list2)))
- list1))
-
(defun wl-append-assoc-list (item value alist)
"make assoc list '((item1 value1-1 value1-2 ...)) (item2 value2-1 ...)))"
(let ((entry (assoc item alist)))