diff options
Diffstat (limited to 'lib/texi-docstring-magic.el')
| -rw-r--r-- | lib/texi-docstring-magic.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/texi-docstring-magic.el b/lib/texi-docstring-magic.el index 2f20b078..a028f56f 100644 --- a/lib/texi-docstring-magic.el +++ b/lib/texi-docstring-magic.el @@ -319,7 +319,9 @@ Markup as @code{stuff} or @lisp stuff @end Lisp." (def (symbol-function function)) (macrop (eq 'macro (car-safe def))) (argsyms (cond ((eq (car-safe def) 'lambda) - (nth 1 def)))) + (nth 1 def)) + ((eq (car-safe def) 'closure) + (nth 2 def)))) (args (mapcar 'symbol-name argsyms))) (cond ((commandp function) |
