From 7d810091d8bfb195e1e0f84a126218cc95d5c95b Mon Sep 17 00:00:00 2001 From: shivers Date: Sun, 22 Oct 1995 13:14:17 +0000 Subject: [PATCH] Commented out module-loading print statements that were vestigial debugging cruft. --- scsh/top.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scsh/top.scm b/scsh/top.scm index bb25404..d99d009 100644 --- a/scsh/top.scm +++ b/scsh/top.scm @@ -146,12 +146,12 @@ (lp switches #t)) ((string=? (car switch) "-l") - (format #t "loading file ~s~%" (cdr switch)) +; (format #t "loading file ~s~%" (cdr switch)) (load-quietly (cdr switch) (interaction-environment)) (lp switches script-loaded?)) ((string=? (car switch) "-lm") - (format #t "loading module file ~s~%" (cdr switch)) +; (format #t "loading module file ~s~%" (cdr switch)) (load-quietly (cdr switch) (config-package)) (lp switches script-loaded?))