diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-12-28 03:16:52 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-12-28 03:16:52 +0100 |
commit | bd53397db8684daa2bdd904336c6d5a8260e115a (patch) | |
tree | 95cd07b9511b0cbab6d2e4eeb7e201c950447652 /elisp | |
parent | bbfb8ba77eb475573a0aae0af253a960a6269133 (diff) | |
download | geiser-bd53397db8684daa2bdd904336c6d5a8260e115a.tar.gz geiser-bd53397db8684daa2bdd904336c6d5a8260e115a.tar.bz2 |
Bug fix: autodoc was skipping some identifiers
Namely, those with non-letters in their name, because we were using
"%S" instead of "%s" to stringify uninterned symbols.
Diffstat (limited to 'elisp')
-rw-r--r-- | elisp/geiser-syntax.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elisp/geiser-syntax.el b/elisp/geiser-syntax.el index 662f9cf..eff1e41 100644 --- a/elisp/geiser-syntax.el +++ b/elisp/geiser-syntax.el @@ -320,7 +320,7 @@ implementation-specific entries for font-lock-keywords.") (prev (and (geiser-syntax--keywordp prev) (list prev)))) (push `(,(car form) ,pos ,@prev) path))))))) - (mapcar (lambda (e) (cons (format "%S" (car e)) (cdr e))) + (mapcar (lambda (e) (cons (format "%s" (car e)) (cdr e))) (nreverse path)))) (defsubst geiser-syntax--binding-form-p (bfs sbfs f) |