* WL-MK (wl-scan-source, wl-uninstall)
authorkaoru <kaoru>
Mon, 4 Jan 2010 14:51:29 +0000 (14:51 +0000)
committerkaoru <kaoru>
Mon, 4 Jan 2010 14:51:29 +0000 (14:51 +0000)
(compile-wl-package, install-wl-package)
(compile-wl-package-xmas, install-wl-package-xmas)
(wl-texinfo-format, wl-texinfo-install) : Use `mapc' instead of
`mapcar'. Don't quote `lambda'.

ChangeLog
WL-MK

index 1e9d30b..acb0953 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2010-01-04  TAKAHASHI Kaoru  <kaoru@kaisei.org>
+
+       * WL-MK (wl-scan-source, wl-uninstall)
+       (compile-wl-package, install-wl-package)
+       (compile-wl-package-xmas, install-wl-package-xmas)
+       (wl-texinfo-format, wl-texinfo-install) : Use `mapc' instead of
+       `mapcar'. Don't quote `lambda'.
+
 2008-11-25  TAKAHASHI Kaoru  <kaoru@kaisei.org>
 
        * INSTALL: Updated recommended version of FLIM.
diff --git a/WL-MK b/WL-MK
index 89d7af2..d7ab2d6 100644 (file)
--- a/WL-MK
+++ b/WL-MK
 
 (defun wl-scan-source (path)
   (let (ret)
-    (mapcar
-     '(lambda (x)
-       (mapcar '(lambda (y)
-                  (setq ret (append (list y (concat y "c")) ret)))
-               (directory-files x nil "\\(.+\\)\\.el$" t)))
+    (mapc
+     (lambda (x)
+       (mapc (lambda (y)
+              (setq ret (append (list y (concat y "c")) ret)))
+            (directory-files x nil "\\(.+\\)\\.el$" t)))
      path)
     ret))
 
 
 (defun wl-uninstall (objs path)
   ;(message (mapconcat 'identity objs " "))
-  (mapcar
-   '(lambda (x)
-      (let ((filename (expand-file-name x path)))
-       (if (and (file-exists-p filename)
-                (file-writable-p filename))
-           (progn
-             (princ (format "%s was uninstalled.\n" filename))
-             (delete-file filename)))))
+  (mapc
+   (lambda (x)
+     (let ((filename (expand-file-name x path)))
+       (if (and (file-exists-p filename)
+               (file-writable-p filename))
+          (progn
+            (princ (format "%s was uninstalled.\n" filename))
+            (delete-file filename)))))
    objs))
 
 
 (defun compile-wl-package ()
   (config-wl-package)
   (make-wl-news)
-  (mapcar
-   '(lambda (x)
-      (compile-elisp-modules (cdr x) (car x)))
+  (mapc
+   (lambda (x)
+     (compile-elisp-modules (cdr x) (car x)))
    modules-alist))
 
 (defun install-wl-icons ()
   (compile-wl-package)
   (let ((wl-install-dir (expand-file-name WL_PREFIX LISPDIR))
        (elmo-install-dir (expand-file-name ELMO_PREFIX LISPDIR)))
-    (mapcar
-     '(lambda (x)
-       (install-elisp-modules (cdr x) (car x)
-                              (if (string= (car x) ELMODIR)
-                                  elmo-install-dir
-                                wl-install-dir)))
+    (mapc
+     (lambda (x)
+       (install-elisp-modules (cdr x) (car x)
+                             (if (string= (car x) ELMODIR)
+                                 elmo-install-dir
+                               wl-install-dir)))
      modules-alist))
   (if PIXMAPDIR
       (install-wl-icons)))
   (Custom-make-dependencies)
   ;; WL-AUTOLOAD-MODULES
   (compile-elisp-modules WL-AUTOLOAD-MODULES WLDIR)
-  (mapcar
-   '(lambda (x)
-      (compile-elisp-modules (cdr x) (car x)))
+  (mapc
+   (lambda (x)
+     (compile-elisp-modules (cdr x) (car x)))
    modules-alist))
 
 (defun install-wl-package-xmas ()
     ;; copy xpm files
     (install-wl-icons)
 
-    (mapcar '(lambda (x)
-              (install-elisp-modules (cdr x) (car x) LISPDIR))
-           modules-alist)
+    (mapc (lambda (x)
+           (install-elisp-modules (cdr x) (car x) LISPDIR))
+         modules-alist)
     ;; WL-AUTOLOAD-MODULES
     (install-elisp-modules WL-AUTOLOAD-MODULES WLDIR LISPDIR)
     ;;
   (wl-detect-info-directory)
   (cond ((null wl-info-lang))
        ((listp wl-info-lang)
-        (mapcar 'wl-texinfo-format-file wl-info-lang))
+        (mapc 'wl-texinfo-format-file wl-info-lang))
        ((stringp wl-info-lang)
         (wl-texinfo-format-file wl-info-lang))))
 
 (defun wl-texinfo-install ()
   (cond ((null wl-info-lang))
        ((listp wl-info-lang)
-        (mapcar 'wl-texinfo-install-file wl-info-lang))
+        (mapc 'wl-texinfo-install-file wl-info-lang))
        ((stringp wl-info-lang)
         (wl-texinfo-install-file wl-info-lang))))