(config-apel, config-apel-package): Replace "\n" in fotmat-strings
authorshuhei <shuhei>
Mon, 12 Mar 2001 11:33:25 +0000 (11:33 +0000)
committershuhei <shuhei>
Mon, 12 Mar 2001 11:33:25 +0000 (11:33 +0000)
with actual newline.
(install-apel): Add comment.
(what-where-apel): Remove old code.

APEL-MK

diff --git a/APEL-MK b/APEL-MK
index 394586e..13f0e72 100644 (file)
--- a/APEL-MK
+++ b/APEL-MK
       (setq APEL_DIR (expand-file-name APEL_PREFIX LISPDIR)))
   (or EMU_DIR
       (setq EMU_DIR (expand-file-name EMU_PREFIX VERSION_SPECIFIC_LISPDIR)))
-  (princ (format "\nLISPDIR=%s\n" LISPDIR))
-  (princ (format "VERSION_SPECIFIC_LISPDIR=%s\n" VERSION_SPECIFIC_LISPDIR)))
+  (princ (format "
+LISPDIR=%s
+VERSION_SPECIFIC_LISPDIR=%s
+"
+                LISPDIR VERSION_SPECIFIC_LISPDIR)))
 
 (defun compile-apel ()
   (config-apel)
 
 (defun install-apel (&optional just-print)
   (config-apel)
-  (or just-print
-      (setq just-print (install-just-print-p)))
+  ;; `just-print' will be non-nil if `install-apel' is called by
+  (or just-print                               ; "make what-where", or
+      (setq just-print (install-just-print-p)))        ; "make -n install".
   (install-elisp-modules emu-modules   "." EMU_DIR  just-print)
   (install-elisp-modules apel-modules  "." APEL_DIR just-print))
 
                    (setq dirs (cdr dirs)))
                  dir))))
   (if PACKAGEDIR
-      (princ (format "\nPACKAGEDIR=%s\n" PACKAGEDIR))
+      (princ (format "
+PACKAGEDIR=%s
+"
+                    PACKAGEDIR))
     (error "XEmacs package system is not available")))
 
 (defun compile-apel-package ()
     (install-update-package-files "apel" dir just-print)))
 
 (defun what-where-apel ()
-  (install-apel 'just-print)
-  ;; (config-apel)
-;;;   (princ (format "
-;;; The files that belong to the EMU modules:
-;;;   %s
-;;;   -> %s
-
-;;; The files that belong to the APEL modules:
-;;;   %s
-;;;   -> %s
-
-;;; Do `make elc', `make install', `make package', or `make install-package'.
-;;; "
-;;;             (mapconcat (function symbol-name) emu-modules ", ")
-;;;             EMU_DIR
-;;;             (mapconcat (function symbol-name) apel-modules ", ")
-;;;             APEL_DIR))
-  )
+  (install-apel 'just-print))
 
 ;;; APEL-MK ends here