diff options
| author | Dmitry Gutov | 2023-08-17 04:08:03 +0300 |
|---|---|---|
| committer | Dmitry Gutov | 2023-08-17 04:16:09 +0300 |
| commit | 9dff654432ec79e9f3d75bc1b4fb869eeccfe213 (patch) | |
| tree | 30ebd8bb88ec9c8172b23b66bf10bb16fade5171 | |
| parent | 155154f6f118361b6c4a86160cae1be45bea0871 (diff) | |
| download | emacs-9dff654432ec79e9f3d75bc1b4fb869eeccfe213.tar.gz emacs-9dff654432ec79e9f3d75bc1b4fb869eeccfe213.zip | |
* src/fileio.c (Ffile_name_concat): Improve docstring.
| -rw-r--r-- | src/fileio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fileio.c b/src/fileio.c index 75bcdf091d8..869e1ea7e31 100644 --- a/src/fileio.c +++ b/src/fileio.c | |||
| @@ -843,10 +843,10 @@ For that reason, you should normally use `make-temp-file' instead. */) | |||
| 843 | 843 | ||
| 844 | DEFUN ("file-name-concat", Ffile_name_concat, Sfile_name_concat, 1, MANY, 0, | 844 | DEFUN ("file-name-concat", Ffile_name_concat, Sfile_name_concat, 1, MANY, 0, |
| 845 | doc: /* Append COMPONENTS to DIRECTORY and return the resulting string. | 845 | doc: /* Append COMPONENTS to DIRECTORY and return the resulting string. |
| 846 | Elements in COMPONENTS must be a string or nil. | 846 | Each element in COMPONENTS must be a string or nil. |
| 847 | DIRECTORY or the non-final elements in COMPONENTS may or may not end | 847 | DIRECTORY or the non-final elements in COMPONENTS may or may not end |
| 848 | with a slash -- if they don't end with a slash, a slash will be | 848 | with a slash -- if they don't end with a slash, a slash will be |
| 849 | inserted before contatenating. | 849 | inserted before concatenating. |
| 850 | usage: (record DIRECTORY &rest COMPONENTS) */) | 850 | usage: (record DIRECTORY &rest COMPONENTS) */) |
| 851 | (ptrdiff_t nargs, Lisp_Object *args) | 851 | (ptrdiff_t nargs, Lisp_Object *args) |
| 852 | { | 852 | { |