(wl-template-select): Cause error if
authorhmurata <hmurata>
Wed, 9 Feb 2005 16:32:40 +0000 (16:32 +0000)
committerhmurata <hmurata>
Wed, 9 Feb 2005 16:32:40 +0000 (16:32 +0000)
`wl-template-alist' is nil.

wl/ChangeLog
wl/wl-template.el

index b796cd4..2e78f75 100644 (file)
@@ -1,3 +1,8 @@
+2005-02-09  Hiroya Murata  <lapis-lazuli@pop06.odn.ne.jp>
+
+       * wl-template.el (wl-template-select): Cause error if
+       `wl-template-alist' is nil.
+
 2005-02-06  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * wl-news.el.in: Set file variable `no-byte-compile'.
index 21c106d..b1f9230 100644 (file)
@@ -93,6 +93,8 @@ Entering WL-Template mode calls the value of `wl-template-mode-hook'."
 (defun wl-template-select (&optional arg)
   "Select template from `wl-template-alist'."
   (interactive "P")
+  (unless wl-template-alist
+    (error "Please set `wl-template-alist'"))
   (if (not (if arg
               (not wl-template-visible-select)
             wl-template-visible-select))