If optional argument is specified, reverse
`wl-template-visible-select'.
+2002-10-09 Hiroya Murata <lapis-lazuli@pop06.odn.ne.jp>
+
+ * wl-template.el (wl-template-select): Added optional argument.
+ If optional argument is specified, reverse
+ `wl-template-visible-select'.
+
2002-10-06 Yoichi NAKAYAMA <yoichi@eken.phys.nagoya-u.ac.jp>
* wl-mime.el (wl-summary-burst): Get elmo folder correctly.
(setq buffer-read-only t)
(run-hooks 'wl-template-mode-hook))
-(defun wl-template-select ()
+(defun wl-template-select (&optional arg)
"Select template from `wl-template-alist'."
- (interactive)
- (if (not wl-template-visible-select)
+ (interactive "P")
+ (if (not (if arg
+ (not wl-template-visible-select)
+ wl-template-visible-select))
(wl-template-apply
(completing-read (format "Template (%s): " wl-template-default-name)
wl-template-alist))