From 217e0c77270d1ee23f547bff8b7644f402a51d06 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-plt.el | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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