From: Miles Bader Date: Sun, 21 Oct 2001 10:20:04 +0000 (+0000) Subject: (help-manyarg-func-alist): Remove entries for `list', `vector', X-Git-Tag: ttn-vms-21-2-B4~19309 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=4c5963d3b20796dae3959f2064ef0cf25094c824;p=emacs.git (help-manyarg-func-alist): Remove entries for `list', `vector', `make-byte-code', `call-process', `call-process-region', `string', `+', `-', `*', `/', `max', `min', `logand', `logior', and `logxor'. --- diff --git a/lisp/help-funs.el b/lisp/help-funs.el index 977626f3a29..e76c1a8deb0 100644 --- a/lisp/help-funs.el +++ b/lisp/help-funs.el @@ -453,24 +453,7 @@ it is displayed along with the global value." ;; l) (defconst help-manyarg-func-alist (purecopy - '((list . "(list &rest OBJECTS)") - (vector . "(vector &rest OBJECTS)") - (make-byte-code . "(make-byte-code &rest ELEMENTS)") - (call-process - . "(call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)") - (call-process-region - . "(call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS)") - (string . "(string &rest CHARACTERS)") - (+ . "(+ &rest NUMBERS-OR-MARKERS)") - (- . "(- &optional NUMBER-OR-MARKER &rest MORE-NUMBERS-OR-MARKERS)") - (* . "(* &rest NUMBERS-OR-MARKERS)") - (/ . "(/ DIVIDEND DIVISOR &rest DIVISORS)") - (max . "(max NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)") - (min . "(min NUMBER-OR-MARKER &rest NUMBERS-OR-MARKERS)") - (logand . "(logand &rest INTS-OR-MARKERS)") - (logior . "(logior &rest INTS-OR-MARKERS)") - (logxor . "(logxor &rest INTS-OR-MARKERS)") - (encode-time + '((encode-time . "(encode-time SECOND MINUTE HOUR DAY MONTH YEAR &optional ZONE)") (insert . "(insert &rest ARGS)") (insert-and-inherit . "(insert-and-inherit &rest ARGS)")