From 5685fad662ea2568a8e16dcfdc709f1476abd15c Mon Sep 17 00:00:00 2001 From: Jose Antonio Ortega Ruiz Date: Thu, 1 Apr 2010 03:33:59 +0200 Subject: Using the scheme reader to read modules names. --- elisp/geiser-guile.el | 3 ++- elisp/geiser-plt.el | 5 +++-- 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 -- cgit v1.2.3