# HG changeset patch # User Miles Bader # Date 1003659604 0 # Node ID 6748fb350a054a24ed96829309661f7b1343200f # Parent 528dd5f565ba7f52ab4c1cc48af11888d674792e (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 -r 528dd5f565ba -r 6748fb350a05 lisp/help-funs.el --- a/lisp/help-funs.el Sun Oct 21 10:00:33 2001 +0000 +++ b/lisp/help-funs.el Sun Oct 21 10:20:04 2001 +0000 @@ -453,24 +453,7 @@ ;; 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)")