changeset 28735:2a88fcce2568

(locate-library): Use mapc. (help-manyarg-func-alist): Add call-process-region.
author Dave Love <fx@gnu.org>
date Thu, 27 Apr 2000 17:01:28 +0000
parents 24e50bfa830e
children fc66690cf3f2
files lisp/help.el
diffstat 1 files changed, 4 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/help.el	Thu Apr 27 10:52:35 2000 +0000
+++ b/lisp/help.el	Thu Apr 27 17:01:28 2000 +0000
@@ -944,9 +944,9 @@
 		     t))
   (let (result)
     (catch 'answer
-      (mapcar
+      (mapc
        (lambda (dir)
-	 (mapcar
+	 (mapc
 	  (lambda (suf)
 	    (let ((try (expand-file-name (concat library suf) dir)))
 	      (and (file-readable-p try)
@@ -1384,6 +1384,8 @@
      (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)")