From 3f5b5a031aedf46f8cfee6d09edb3beed9cf7672 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Tue, 7 Apr 2020 23:53:32 +0200 Subject: Introduce --repl. --- module/main.scm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) (limited to 'module/main.scm') diff --git a/module/main.scm b/module/main.scm index 4b47025a..246e729c 100755 --- a/module/main.scm +++ b/module/main.scm @@ -28,23 +28,29 @@ exec guile -e main -s $0 "$@" (ice-9 getopt-long) (statprof) + (repl) ) (define options '((statprof (value optional)) + (repl (value optional)) (help (single-char #\h)))) (define (ornull a b) (if (null? a) b a)) + (define (wrapped-main args) (define opts (getopt-long args options #:stop-at-first-non-option #t)) (define stprof (option-ref opts 'statprof #f)) + (define repl (option-ref opts 'repl #f)) - (when stprof - (statprof-start)) + (when stprof (statprof-start)) + + (cond [(eqv? #t repl) (repl-start (format #f "~a/calp-~a" (runtime-dir) (getpid)))] + [repl => repl-start]) (let ((config-file (format #f "~a/.config/calp/config.scm" (getenv "HOME")))) -- cgit v1.2.3