Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
e3e36d74
Commit
e3e36d74
authored
Apr 27, 2000
by
Dave Love
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(locate-library): Use mapc.
(help-manyarg-func-alist): Add call-process-region.
parent
353964e3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
2 deletions
+9
-2
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/help.el
lisp/help.el
+4
-2
No files found.
lisp/ChangeLog
View file @
e3e36d74
2000-04-27 Dave Love <fx@gnu.org>
* help.el (locate-library): Use mapc.
(help-manyarg-func-alist): Add call-process-region.
2000-04-27 Gerd Moellmann <gerd@gnu.org>
* subr.el (add-minor-mode): Use `set' instead of `setq'.
...
...
lisp/help.el
View file @
e3e36d74
...
...
@@ -944,9 +944,9 @@ and the file name is displayed in the echo area."
t
))
(
let
(
result
)
(
catch
'answer
(
mapc
ar
(
mapc
(
lambda
(
dir
)
(
mapc
ar
(
mapc
(
lambda
(
suf
)
(
let
((
try
(
expand-file-name
(
concat
library
suf
)
dir
)))
(
and
(
file-readable-p
try
)
...
...
@@ -1384,6 +1384,8 @@ out of view."
(
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)"
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment