]> git.eshelyaron.com Git - emacs.git/commitdiff
(help-manyarg-func-alist): Remove entries for `list', `vector',
authorMiles Bader <miles@gnu.org>
Sun, 21 Oct 2001 10:20:04 +0000 (10:20 +0000)
committerMiles Bader <miles@gnu.org>
Sun, 21 Oct 2001 10:20:04 +0000 (10:20 +0000)
`make-byte-code', `call-process', `call-process-region', `string', `+',
`-', `*', `/', `max', `min', `logand', `logior', and `logxor'.

lisp/help-funs.el

index 977626f3a291d80377bf04bfd59dfb9db6fb4593..e76c1a8deb0d69b10f9cd3ebb6dc0fb895d7188e 100644 (file)
@@ -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)")