summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--elisp/geiser-guile.el3
-rw-r--r--elisp/geiser-plt.el5
2 files changed, 5 insertions, 3 deletions
diff --git a/elisp/geiser-guile.el b/elisp/geiser-guile.el
index db4b27d..0bbf9b7 100644
--- a/elisp/geiser-guile.el
+++ b/elisp/geiser-guile.el
@@ -86,7 +86,8 @@ This function uses `geiser-guile-init-file' if it exists."
:f)))
((listp module) module)
((stringp module)
- (or (ignore-errors (car (read-from-string module))) :f))
+ (or (ignore-errors
+ (car (geiser-syntax--read-from-string module))) :f))
(t :f)))
(defun geiser-guile--enter-command (module)
diff --git a/elisp/geiser-plt.el b/elisp/geiser-plt.el
index 6a804f2..52af728 100644
--- a/elisp/geiser-plt.el
+++ b/elisp/geiser-plt.el
@@ -72,7 +72,7 @@ This function uses `geiser-plt-init-file' if it exists."
(goto-char (point-min))
(if (re-search-forward
"^\\(?:#lang\\|(module +[^ ]+?\\) +\\([^ ]+?\\|([^)]+)\\) *$" nil t)
- (car (read-from-string (match-string-no-properties 1)))
+ (car (geiser-syntax--read-from-string (match-string-no-properties 1)))
:f)))
(defun geiser-plt--geiser-procedure (proc)
@@ -88,7 +88,8 @@ This function uses `geiser-plt-init-file' if it exists."
(goto-char (point-min))
(and (re-search-forward geiser-plt--module-re nil t)
(ignore-errors
- (car (read-from-string (match-string-no-properties 1)))))))
+ (car (geiser-syntax--read-from-string
+ (match-string-no-properties 1)))))))
(defsubst geiser-plt--implicit-module ()
(save-excursion