diff options
| author | Pavel Janík | 2001-10-15 11:13:53 +0000 |
|---|---|---|
| committer | Pavel Janík | 2001-10-15 11:13:53 +0000 |
| commit | dd8d1e71ef11f3722fc4e5607b45c32839d1b000 (patch) | |
| tree | eb37a0279e5cf884592e5fb486fe86ff13ea07f3 | |
| parent | 288148a1243e26b45d7435bcee8908e007d364d2 (diff) | |
| download | emacs-dd8d1e71ef11f3722fc4e5607b45c32839d1b000.tar.gz emacs-dd8d1e71ef11f3722fc4e5607b45c32839d1b000.zip | |
(Fmapconcat): Fix typo in a doc string.
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/fns.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b13e27b0b4e..5045871d930 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2001-10-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz> | 1 | 2001-10-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz> |
| 2 | 2 | ||
| 3 | * fns.c (Fmapconcat): Fix typo in a doc string. | ||
| 4 | |||
| 3 | * dispnew.c (Fsleep_for): Fix typo in a doc string. | 5 | * dispnew.c (Fsleep_for): Fix typo in a doc string. |
| 4 | 6 | ||
| 5 | 2001-10-15 Gerd Moellmann <gerd@gnu.org> | 7 | 2001-10-15 Gerd Moellmann <gerd@gnu.org> |
| @@ -2719,7 +2719,7 @@ mapcar1 (leni, vals, fn, seq) | |||
| 2719 | 2719 | ||
| 2720 | DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0, | 2720 | DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0, |
| 2721 | /* Apply FUNCTION to each element of SEQUENCE, and concat the results as strings. | 2721 | /* Apply FUNCTION to each element of SEQUENCE, and concat the results as strings. |
| 2722 | In between each pair of results, stick in SEPARATOR. Thus, "" as | 2722 | In between each pair of results, stick in SEPARATOR. Thus, " " as |
| 2723 | SEPARATOR results in spaces between the values returned by FUNCTION. | 2723 | SEPARATOR results in spaces between the values returned by FUNCTION. |
| 2724 | SEQUENCE may be a list, a vector, a bool-vector, or a string. */ | 2724 | SEQUENCE may be a list, a vector, a bool-vector, or a string. */ |
| 2725 | (function, sequence, separator)) | 2725 | (function, sequence, separator)) |