diff options
| author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-11 20:56:58 +0100 | 
|---|---|---|
| committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-02-11 20:56:58 +0100 | 
| commit | bfd6b0f3d7f1472abc7411a4cafb8cb7619c9a8f (patch) | |
| tree | 328ae7c41133110cfe79b0bb44aa8c1e81dabb17 /elisp/geiser-syntax.el | |
| parent | 15fd33fcc8b5d22d259351a7034e496a02f48814 (diff) | |
| download | geiser-bfd6b0f3d7f1472abc7411a4cafb8cb7619c9a8f.tar.gz geiser-bfd6b0f3d7f1472abc7411a4cafb8cb7619c9a8f.tar.bz2  | |
Don't let (ice-9 history) confuse the evaluator.
Diffstat (limited to 'elisp/geiser-syntax.el')
| -rw-r--r-- | elisp/geiser-syntax.el | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/elisp/geiser-syntax.el b/elisp/geiser-syntax.el index 32b28bb..2199cc5 100644 --- a/elisp/geiser-syntax.el +++ b/elisp/geiser-syntax.el @@ -93,7 +93,10 @@    (goto-char (point-min))    (while (re-search-forward "#(" nil t) (replace-match "(vector "))    (goto-char (point-min)) -  (while (re-search-forward "#" nil t) (replace-match "\\\\#"))) +  (while (re-search-forward "#" nil t) (replace-match "\\\\#")) +  (goto-char (point-min)) +  (skip-syntax-forward "^(")) +)  | 
