From e2a623c47387dfae4977bdf06de6088f8e637824 Mon Sep 17 00:00:00 2001 From: shuhei Date: Mon, 12 Mar 2001 11:33:25 +0000 Subject: [PATCH] (config-apel, config-apel-package): Replace "\n" in fotmat-strings with actual newline. (install-apel): Add comment. (what-where-apel): Remove old code. --- APEL-MK | 36 +++++++++++++----------------------- 1 file changed, 13 insertions(+), 23 deletions(-) diff --git a/APEL-MK b/APEL-MK index 394586e..13f0e72 100644 --- a/APEL-MK +++ b/APEL-MK @@ -109,8 +109,11 @@ (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) @@ -120,8 +123,9 @@ (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)) @@ -167,7 +171,10 @@ (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 () @@ -186,23 +193,6 @@ (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 -- 1.7.10.4