aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/help.el
diff options
context:
space:
mode:
authorDave Love2000-04-27 17:02:42 +0000
committerDave Love2000-04-27 17:02:42 +0000
commite3e36d741fcc5d7ec1737183b61576df29fe8bc5 (patch)
treecebf51204e420ec5c4c4d14768076dc00e670a46 /lisp/help.el
parent353964e3915a55393ff21cf3aa6de5fcc56e8c3e (diff)
downloademacs-e3e36d741fcc5d7ec1737183b61576df29fe8bc5.tar.gz
emacs-e3e36d741fcc5d7ec1737183b61576df29fe8bc5.zip
(locate-library): Use mapc.
(help-manyarg-func-alist): Add call-process-region.
Diffstat (limited to 'lisp/help.el')
-rw-r--r--lisp/help.el6
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/help.el b/lisp/help.el
index fed3dd7f691..6e343c03ce6 100644
--- a/lisp/help.el
+++ b/lisp/help.el
@@ -944,9 +944,9 @@ and the file name is displayed in the echo area."
944 t)) 944 t))
945 (let (result) 945 (let (result)
946 (catch 'answer 946 (catch 'answer
947 (mapcar 947 (mapc
948 (lambda (dir) 948 (lambda (dir)
949 (mapcar 949 (mapc
950 (lambda (suf) 950 (lambda (suf)
951 (let ((try (expand-file-name (concat library suf) dir))) 951 (let ((try (expand-file-name (concat library suf) dir)))
952 (and (file-readable-p try) 952 (and (file-readable-p try)
@@ -1384,6 +1384,8 @@ out of view."
1384 (make-byte-code . "(make-byte-code &rest ELEMENTS)") 1384 (make-byte-code . "(make-byte-code &rest ELEMENTS)")
1385 (call-process 1385 (call-process
1386 . "(call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)") 1386 . "(call-process PROGRAM &optional INFILE BUFFER DISPLAY &rest ARGS)")
1387 (call-process-region
1388 . "(call-process-region START END PROGRAM &optional DELETE BUFFER DISPLAY &rest ARGS)")
1387 (string . "(string &rest CHARACTERS)") 1389 (string . "(string &rest CHARACTERS)")
1388 (+ . "(+ &rest NUMBERS-OR-MARKERS)") 1390 (+ . "(+ &rest NUMBERS-OR-MARKERS)")
1389 (- . "(- &optional NUMBER-OR-MARKER &rest MORE-NUMBERS-OR-MARKERS)") 1391 (- . "(- &optional NUMBER-OR-MARKER &rest MORE-NUMBERS-OR-MARKERS)")