aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/help.el6
2 files changed, 9 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 02fefd8af9a..375666e6571 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12000-04-27 Dave Love <fx@gnu.org>
2
3 * help.el (locate-library): Use mapc.
4 (help-manyarg-func-alist): Add call-process-region.
5
12000-04-27 Gerd Moellmann <gerd@gnu.org> 62000-04-27 Gerd Moellmann <gerd@gnu.org>
2 7
3 * subr.el (add-minor-mode): Use `set' instead of `setq'. 8 * subr.el (add-minor-mode): Use `set' instead of `setq'.
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)")