]> git.eshelyaron.com Git - emacs.git/commitdiff
(describe-function-1): Cope with alias of manyarg
authorDave Love <fx@gnu.org>
Thu, 18 Jul 2002 18:27:15 +0000 (18:27 +0000)
committerDave Love <fx@gnu.org>
Thu, 18 Jul 2002 18:27:15 +0000 (18:27 +0000)
function.

lisp/help.el

index d0b5edcf3c2163aa23b4ce20262a59a6d784dc87..3bea912dc35d5e48dc8e5eab5b345403a055585c 100644 (file)
@@ -781,7 +781,10 @@ It can also be nil, if the definition is not associated with any file."
                           (goto-char (point-min))
                           (forward-paragraph)
                           (insert
-                           "[Missing arglist.  Please make a bug report.]\n")))
+                           (or (cdr (assq (intern name)
+                                          help-manyarg-func-alist))
+                           "[Missing arglist.  Please make a bug report.]")
+                           ?\n)))
                       (goto-char (point-max))))
                 (help-setup-xref (list #'describe-function function)
                                  interactive-p))