* test-dist.el (test-wl-modules-exists): Fix void variable.
authorkaoru <kaoru>
Fri, 17 Jan 2003 12:11:17 +0000 (12:11 +0000)
committerkaoru <kaoru>
Fri, 17 Jan 2003 12:11:17 +0000 (12:11 +0000)
(test-elmo-modules-exists): Ditto.

tests/ChangeLog
tests/test-dist.el

index c622a90..932911f 100644 (file)
@@ -1,3 +1,8 @@
+2003-01-17  TAKAHASHI Kaoru  <kaoru@kaisei.org>
+
+       * test-dist.el (test-wl-modules-exists): Fix void variable.
+       (test-elmo-modules-exists): Ditto.
+
 2003-01-12  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * check-modules.el (check-modules-semi-mime-edit): Check
index 4a00833..5b276aa 100644 (file)
@@ -13,7 +13,7 @@
        (lambda (module)
         (setq filename (concat (symbol-name module) ".el"))
         (unless (file-exists-p (expand-file-name filename WLDIR))
-          (add-to-list 'lost symbol)))
+          (add-to-list 'lost filename)))
        WL-MODULES)
       lost))))
 
@@ -26,7 +26,7 @@
        (lambda (module)
         (setq filename (concat (symbol-name module) ".el"))
         (unless (file-exists-p (expand-file-name filename ELMODIR))
-          (add-to-list 'lost symbol)))
+          (add-to-list 'lost filename)))
        ELMO-MODULES)
       lost))))