diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-05-15 13:42:41 +0200 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-05-15 13:42:41 +0200 |
commit | e56277b22d668b6b46222d89054cc4842a1c0239 (patch) | |
tree | 7e286398abe97415cd286e5adfec35798d486e98 /elisp/geiser-plt.el | |
parent | 6b108fd3183192088ce94110b74d757360a29702 (diff) | |
download | geiser-guile-e56277b22d668b6b46222d89054cc4842a1c0239.tar.gz geiser-guile-e56277b22d668b6b46222d89054cc4842a1c0239.tar.bz2 |
PLT: Bug fix: correctly handle explicit module definitions.
Diffstat (limited to 'elisp/geiser-plt.el')
-rw-r--r-- | elisp/geiser-plt.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-plt.el b/elisp/geiser-plt.el index 1db0ec9..16c0b96 100644 --- a/elisp/geiser-plt.el +++ b/elisp/geiser-plt.el @@ -86,7 +86,7 @@ This function uses `geiser-plt-init-file' if it exists." `(dynamic-require ''geiser ',proc))) (defconst geiser-plt--module-re - "^(module +\\(([^)]+)\\)") + "^(module +\\([^ ]+\\)") (defun geiser-plt--explicit-module () (save-excursion |