diff options
| author | Eli Zaretskii | 2021-07-24 20:18:28 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2021-07-24 20:18:28 +0300 |
| commit | e3155440dc36e02b3704ca7f9e4cf8728a2e2131 (patch) | |
| tree | 946677a9e28c0e826f98e29d34f70cab21988cb2 /src | |
| parent | 7c83e605ab84e8b62254c55f347abc8aa9c6057b (diff) | |
| download | emacs-e3155440dc36e02b3704ca7f9e4cf8728a2e2131.tar.gz emacs-e3155440dc36e02b3704ca7f9e4cf8728a2e2131.zip | |
; * src/fileio.c (Fdirectory_append): Doc fix.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fileio.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/fileio.c b/src/fileio.c index 6d505fd0f01..d6b3e7bca40 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -751,9 +751,10 @@ For that reason, you should normally use `make-temp-file' instead. */) | |||
| 751 | 751 | ||
| 752 | DEFUN ("directory-append", Fdirectory_append, Sdirectory_append, 1, MANY, 0, | 752 | DEFUN ("directory-append", Fdirectory_append, Sdirectory_append, 1, MANY, 0, |
| 753 | doc: /* Append COMPONENTS to DIRECTORY and return the resulting string. | 753 | doc: /* Append COMPONENTS to DIRECTORY and return the resulting string. |
| 754 | COMPONENTS must be a list of strings. DIRECTORY or the non-final | 754 | COMPONENTS must be strings. |
| 755 | elements in COMPONENTS may or may not end with a slash -- if they don't | 755 | DIRECTORY or the non-final elements in COMPONENTS may or may not end |
| 756 | end with a slash, a slash will be inserted before contatenating. | 756 | with a slash -- if they don't end with a slash, a slash will be |
| 757 | inserted before contatenating. | ||
| 757 | usage: (record DIRECTORY &rest COMPONENTS) */) | 758 | usage: (record DIRECTORY &rest COMPONENTS) */) |
| 758 | (ptrdiff_t nargs, Lisp_Object *args) | 759 | (ptrdiff_t nargs, Lisp_Object *args) |
| 759 | { | 760 | { |