diff options
| author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-11-12 18:54:55 +0100 | 
|---|---|---|
| committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2009-11-12 18:54:55 +0100 | 
| commit | 10b4e4a8a478b39b5c46a443a3e5117a5aa82cb7 (patch) | |
| tree | 166332f00a8c668061462da38108b6e4a67730a8 /elisp | |
| parent | b6117df5d3122e429196be3996def8f51c08583e (diff) | |
| download | geiser-10b4e4a8a478b39b5c46a443a3e5117a5aa82cb7.tar.gz geiser-10b4e4a8a478b39b5c46a443a3e5117a5aa82cb7.tar.bz2 | |
Bug fix: links in documentation buffers work again.
* elisp/geiser-impl.el (with--geiser-implementation): macro was not
  setting the implementation environment correctly.
Diffstat (limited to 'elisp')
| -rw-r--r-- | elisp/geiser-impl.el | 7 | 
1 files changed, 4 insertions, 3 deletions
| diff --git a/elisp/geiser-impl.el b/elisp/geiser-impl.el index 2fb0828..e870be3 100644 --- a/elisp/geiser-impl.el +++ b/elisp/geiser-impl.el @@ -236,17 +236,18 @@ buffer contains Scheme code of the given implementation.")  (defmacro with--geiser-implementation (impl &rest body)    (let* ((mbindings (mapcar (lambda (m)                                `(,(nth 0 m) -                                (geiser-impl--registered-method ',impl +                                (geiser-impl--registered-method ,impl                                                                  ',(nth 1 m)                                                                  ',(nth 2 m))))                              geiser-impl--local-methods))           (vbindings (mapcar (lambda (m)                                `(,(nth 0 m) -                                (geiser-impl--registered-value ',impl +                                (geiser-impl--registered-value ,impl                                                                 ',(nth 1 m)                                                                 ',(nth 2 m))))                              geiser-impl--local-variables)) -         (bindings (append mbindings vbindings))) +         (ibindings `((geiser-impl--implementation ,impl))) +         (bindings (append ibindings mbindings vbindings)))      `(let* ,bindings ,@body)))  (put 'with--geiser-implementation 'lisp-indent-function 1) | 
