aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2019-06-07 07:50:49 -0700
committerGlenn Morris2019-06-07 07:50:49 -0700
commit348657cc2155f1d27338dc169634dc74caf9a0a3 (patch)
tree79725bbf23d87b76cf2ec9615f9e5b8ee52296ee /src
parent6bee17e4474cce4175f0289961f1f1fc40ba800e (diff)
parent9254885a9571162920889f47adb41eaf1e555c21 (diff)
downloademacs-348657cc2155f1d27338dc169634dc74caf9a0a3.tar.gz
emacs-348657cc2155f1d27338dc169634dc74caf9a0a3.zip
Merge from origin/emacs-26
9254885 (origin/emacs-26) Resurrect display-line-number-mode in clien... aecbbd5 * src/fns.c (Fmapconcat): Doc fix. (Bug#35710) 8e5fc38 Fix typo ee21b40 * lisp/term/w32-win.el ([noname]): Bind to 'ignore'. (Bug#36... f68b33f Fix styling of Unicode codepoints in manuals ff7ec6f Fix a few uses of quotes in user manual b67042b More minor copyedits in the Emacs manual 9734b5c Fix minor issues in the Emacs manual c153250 Try to improve text on atomic windows in Elisp manual fb314ba Don't recommend insert-before-markers in process filters
Diffstat (limited to 'src')
-rw-r--r--src/fns.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index cb47b818f17..4bb525b89e9 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2681,8 +2681,12 @@ mapcar1 (EMACS_INT leni, Lisp_Object *vals, Lisp_Object fn, Lisp_Object seq)
2681DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0, 2681DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0,
2682 doc: /* Apply FUNCTION to each element of SEQUENCE, and concat the results as strings. 2682 doc: /* Apply FUNCTION to each element of SEQUENCE, and concat the results as strings.
2683In between each pair of results, stick in SEPARATOR. Thus, " " as 2683In between each pair of results, stick in SEPARATOR. Thus, " " as
2684SEPARATOR results in spaces between the values returned by FUNCTION. 2684 SEPARATOR results in spaces between the values returned by FUNCTION.
2685SEQUENCE may be a list, a vector, a bool-vector, or a string. */) 2685SEQUENCE may be a list, a vector, a bool-vector, or a string.
2686SEPARATOR must be a string.
2687FUNCTION must be a function of one argument, and must return a value
2688 that is a sequence of characters: either a string, or a vector or
2689 list of numbers that are valid character codepoints. */)
2686 (Lisp_Object function, Lisp_Object sequence, Lisp_Object separator) 2690 (Lisp_Object function, Lisp_Object sequence, Lisp_Object separator)
2687{ 2691{
2688 USE_SAFE_ALLOCA; 2692 USE_SAFE_ALLOCA;