From 9f93205d32bfe1725ec39779493d12fbbe5fd605 Mon Sep 17 00:00:00 2001 From: Dan Leslie Date: Tue, 9 Aug 2016 16:34:31 -0700 Subject: Adds required modules to binary parameters -This causes chicken to fail to run if it cannot find the required modules for Geiser; and will tell the user that the module is missing. --- elisp/geiser-chicken.el | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/elisp/geiser-chicken.el b/elisp/geiser-chicken.el index f9da976..12ca006 100644 --- a/elisp/geiser-chicken.el +++ b/elisp/geiser-chicken.el @@ -104,6 +104,9 @@ this variable to t." :type 'boolean :group 'geiser-chicken) +(defvar geiser-chicken--required-modules + (list "chicken-doc" "apropos" "data-structures" "extras" "ports" "posix" "srfi-1" "srfi-13" "srfi-14" "srfi-18" "srfi-69" "tcp" "utils")) + ;;; REPL support: @@ -122,7 +125,9 @@ This function uses `geiser-chicken-init-file' if it exists." ,@n-flags "-include-path" ,(expand-file-name "chicken/" geiser-scheme-dir) ,@(apply 'append (mapcar (lambda (p) (list "-include-path" p)) geiser-chicken-load-path)) - ,@(and init-file (file-readable-p init-file) (list init-file))))) + ,@(and init-file (file-readable-p init-file) (list init-file)) + ,@(apply 'append (mapcar (lambda (m) (list "-R" m)) + geiser-chicken--required-modules))))) (defconst geiser-chicken--prompt-regexp "#[^;]*;[^:0-9]*:?[0-9]+> ") -- cgit v1.2.3