diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-21 02:30:04 +0100 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2010-11-21 02:30:04 +0100 |
commit | b437f54ca8154356f8f576f14f4c167f7f1fa8ff (patch) | |
tree | f57c422ac85663be5e9d36bfa2a5a538db2be7a8 /elisp/geiser-doc.el | |
parent | 1710566476f5230d95e43cdceeab3487df76b69e (diff) | |
download | geiser-guile-b437f54ca8154356f8f576f14f4c167f7f1fa8ff.tar.gz geiser-guile-b437f54ca8154356f8f576f14f4c167f7f1fa8ff.tar.bz2 |
Even better, as in 'correct', display of autodoc args
We're being a bit silly here, first converting the autodoc retort
string to an elisp value and then reconverting the arguments again to
a string with scheme syntax. We should probably do this at
geiser-syntax's parser level, with a special mode producing stringy
representations of tokens. Don't tell anyone.
Diffstat (limited to 'elisp/geiser-doc.el')
-rw-r--r-- | elisp/geiser-doc.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/elisp/geiser-doc.el b/elisp/geiser-doc.el index b95242c..3778770 100644 --- a/elisp/geiser-doc.el +++ b/elisp/geiser-doc.el @@ -278,8 +278,8 @@ With prefix argument, ask for symbol (with completion)." (geiser-doc--insert-title (format "%s" module) t) (newline) (dolist (g '(("Procedures:" . procs) - ("Variables:" . vars) - ("Syntax:" . syntax))) + ("Syntax:" . syntax) + ("Variables:" . vars))) (geiser-doc--insert-list (car g) (cdr (assoc (cdr g) exports)) module |