diff options
| author | Eli Zaretskii | 2019-07-06 10:31:06 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2019-07-06 10:31:06 +0300 |
| commit | 8910fe1db06a8bf997930087025bbbabcc21741d (patch) | |
| tree | 8a0ef49e4cabdc030f9441752a3f9b937ae20c7e /src | |
| parent | f0db687a28546b85a70fea1ce3b1fd4186693e70 (diff) | |
| download | emacs-8910fe1db06a8bf997930087025bbbabcc21741d.tar.gz emacs-8910fe1db06a8bf997930087025bbbabcc21741d.zip | |
* src/fns.c (Fmapconcat): Doc fix. (Bug#36418)
Diffstat (limited to 'src')
| -rw-r--r-- | src/fns.c | 2 |
1 files changed, 1 insertions, 1 deletions
| @@ -2496,7 +2496,7 @@ DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0, | |||
| 2496 | In between each pair of results, stick in SEPARATOR. Thus, " " as | 2496 | In between each pair of results, stick in SEPARATOR. Thus, " " as |
| 2497 | SEPARATOR results in spaces between the values returned by FUNCTION. | 2497 | SEPARATOR results in spaces between the values returned by FUNCTION. |
| 2498 | SEQUENCE may be a list, a vector, a bool-vector, or a string. | 2498 | SEQUENCE may be a list, a vector, a bool-vector, or a string. |
| 2499 | SEPARATOR must be a string. | 2499 | SEPARATOR must be a string, a vector, or a list of characters. |
| 2500 | FUNCTION must be a function of one argument, and must return a value | 2500 | FUNCTION must be a function of one argument, and must return a value |
| 2501 | that is a sequence of characters: either a string, or a vector or | 2501 | that is a sequence of characters: either a string, or a vector or |
| 2502 | list of numbers that are valid character codepoints. */) | 2502 | list of numbers that are valid character codepoints. */) |