aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPavel Janík2001-10-15 11:13:53 +0000
committerPavel Janík2001-10-15 11:13:53 +0000
commitdd8d1e71ef11f3722fc4e5607b45c32839d1b000 (patch)
treeeb37a0279e5cf884592e5fb486fe86ff13ea07f3
parent288148a1243e26b45d7435bcee8908e007d364d2 (diff)
downloademacs-dd8d1e71ef11f3722fc4e5607b45c32839d1b000.tar.gz
emacs-dd8d1e71ef11f3722fc4e5607b45c32839d1b000.zip
(Fmapconcat): Fix typo in a doc string.
-rw-r--r--src/ChangeLog2
-rw-r--r--src/fns.c2
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 @@
12001-10-15 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 12001-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
52001-10-15 Gerd Moellmann <gerd@gnu.org> 72001-10-15 Gerd Moellmann <gerd@gnu.org>
diff --git a/src/fns.c b/src/fns.c
index 6b6ccd6984a..af794f81184 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2719,7 +2719,7 @@ mapcar1 (leni, vals, fn, seq)
2719 2719
2720DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0, 2720DEFUN ("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.
2722In between each pair of results, stick in SEPARATOR. Thus, "" as 2722In between each pair of results, stick in SEPARATOR. Thus, " " as
2723SEPARATOR results in spaces between the values returned by FUNCTION. 2723SEPARATOR results in spaces between the values returned by FUNCTION.
2724SEQUENCE may be a list, a vector, a bool-vector, or a string. */ 2724SEQUENCE may be a list, a vector, a bool-vector, or a string. */
2725 (function, sequence, separator)) 2725 (function, sequence, separator))