diff options
author | jao <jao@gnu.org> | 2022-10-13 03:27:43 +0100 |
---|---|---|
committer | jao <jao@gnu.org> | 2022-10-13 03:27:43 +0100 |
commit | cf5ef755d7152c6a21b1655fb85ea02cb16ae285 (patch) | |
tree | 6c6f9353f5d8f26400c718732810e4c8786e41bb /geiser-chez.el | |
parent | 53b7279550a06967f660656363daa87bb261a753 (diff) | |
download | geiser-chez-cf5ef755d7152c6a21b1655fb85ea02cb16ae285.tar.gz geiser-chez-cf5ef755d7152c6a21b1655fb85ea02cb16ae285.tar.bz2 |
better autodoc via data from chez-docs
Diffstat (limited to 'geiser-chez.el')
-rw-r--r-- | geiser-chez.el | 29 |
1 files changed, 17 insertions, 12 deletions
diff --git a/geiser-chez.el b/geiser-chez.el index 4e087da..92bede7 100644 --- a/geiser-chez.el +++ b/geiser-chez.el @@ -1,4 +1,4 @@ -;;; geiser-chez.el --- Chez Scheme's implementation of the geiser protocols -*- lexical-binding: t; -*- +;;; geiser-chez.el --- Chez and Geiser talk to each other -*- lexical-binding: t; -*- ;; Author: Peter <craven@gmx.net> ;; Maintainer: Jose A Ortega Ruiz <jao@gnu.org> @@ -84,8 +84,8 @@ host." (expand-file-name "src" (file-name-directory load-file-name)) "Directory where the Chez scheme geiser modules are installed.") -(defun geiser-chez--init-file () - "Possibly remote init file, when it exists, as a list." +(defun geiser-chez--init-files () + "Possibly remote init file(s), when they exist, as a list." (let* ((file (and (stringp geiser-chez-init-file) (expand-file-name geiser-chez-init-file))) (file (and file (concat (file-remote-p default-directory) file)))) @@ -94,22 +94,27 @@ host." (geiser-log--info "Init file not readable (%s)" file) nil))) -(defun geiser-chez--module-files () - "Possibly remote list of scheme files used by chez." - (let ((local-file (expand-file-name "geiser/geiser.ss" geiser-chez-scheme-dir))) +(defun geiser-chez--module-file (file) + "Copy, if needed, the given scheme file to its remote destination. +Return its local name." + (let ((local (expand-file-name (concat "geiser/" file) geiser-chez-scheme-dir))) (if (file-remote-p default-directory) (let* ((temporary-file-directory (temporary-file-directory)) (temp-dir (make-temp-file "geiser" t)) (remote (concat (file-name-as-directory temp-dir) "geiser.ss"))) (with-temp-buffer - (insert-file-contents local-file) + (insert-file-contents local) (write-file remote)) - (list (file-local-name remote))) - (list local-file)))) + (file-local-name remote)) + local))) + +(defun geiser-chez--module-files () + "List of (possibly copied to a tramped remote) scheme files used by chez." + (mapcar #'geiser-chez--module-file '("geiser-data.ss" "geiser.ss"))) (defun geiser-chez--parameters () "Return a list with all parameters needed to start Chez Scheme." - (append (geiser-chez--init-file) + (append (cons "--compile-imported-libraries" (geiser-chez--init-files)) (geiser-chez--module-files) geiser-chez-extra-command-line-parameters)) @@ -283,8 +288,8 @@ host." ;; (external-help geiser-chez--manual-look-up) ;; (check-buffer geiser-chez--guess) (keywords geiser-chez--keywords) - ;; (case-sensitive geiser-chez-case-sensitive-p) - ) + (nested-definitions t) + (case-sensitive nil)) (geiser-implementation-extension 'chez "ss") |