diff options
| author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-08-11 20:56:39 +0200 | 
|---|---|---|
| committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-08-11 20:56:39 +0200 | 
| commit | 51367f32e213f4f3a1d300c557a286d9fcbef419 (patch) | |
| tree | a3b9d43a2065d8ea4d653691c1a84a311324b14b /elisp | |
| parent | e86116b97dc079c7a0fd6e96a5724eee6b54c5cf (diff) | |
| download | geiser-51367f32e213f4f3a1d300c557a286d9fcbef419.tar.gz geiser-51367f32e213f4f3a1d300c557a286d9fcbef419.tar.bz2 | |
Fixed bug in autodoc signature recognition.
Diffstat (limited to 'elisp')
| -rw-r--r-- | elisp/geiser-autodoc.el | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/elisp/geiser-autodoc.el b/elisp/geiser-autodoc.el index f56a2ae..90295b7 100644 --- a/elisp/geiser-autodoc.el +++ b/elisp/geiser-autodoc.el @@ -160,7 +160,7 @@ when `geiser-autodoc-display-module-p' is on."                                                 keep-cached))          (p (car path))          (s)) -    (while (and path (not s)) +    (while (and p (not s))        (unless (setq s (cdr (assq (car p) signs)))          (setq p (car path))          (setq path (cdr path)))) | 
