summaryrefslogtreecommitdiff
path: root/elisp/geiser-autodoc.el
diff options
context:
space:
mode:
authorJose Antonio Ortega Ruiz <jao@gnu.org>2010-08-11 20:56:39 +0200
committerJose Antonio Ortega Ruiz <jao@gnu.org>2010-08-11 20:56:39 +0200
commitebec43db543a00efa13948f46fa30864844859fe (patch)
treece26e4e7acb274d44a3b4bc0c9c799172def49ec /elisp/geiser-autodoc.el
parent0b706d66773f1ee6222aa0f80520da3a3b6c4b04 (diff)
downloadgeiser-chez-ebec43db543a00efa13948f46fa30864844859fe.tar.gz
geiser-chez-ebec43db543a00efa13948f46fa30864844859fe.tar.bz2
Fixed bug in autodoc signature recognition.
Diffstat (limited to 'elisp/geiser-autodoc.el')
-rw-r--r--elisp/geiser-autodoc.el2
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))))