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 | ebec43db543a00efa13948f46fa30864844859fe (patch) | |
tree | ce26e4e7acb274d44a3b4bc0c9c799172def49ec | |
parent | 0b706d66773f1ee6222aa0f80520da3a3b6c4b04 (diff) | |
download | geiser-guile-ebec43db543a00efa13948f46fa30864844859fe.tar.gz geiser-guile-ebec43db543a00efa13948f46fa30864844859fe.tar.bz2 |
Fixed bug in autodoc signature recognition.
-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)))) |