From: Dave Love Date: Thu, 18 Jul 2002 18:27:15 +0000 (+0000) Subject: (describe-function-1): Cope with alias of manyarg X-Git-Tag: emacs-pretest-21.2.91~157 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a94bb43b0c703dfd5341d7f7b657b4c914125a97;p=emacs.git (describe-function-1): Cope with alias of manyarg function. --- diff --git a/lisp/help.el b/lisp/help.el index d0b5edcf3c2..3bea912dc35 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -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))