aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGlenn Morris2019-07-06 12:52:12 -0700
committerGlenn Morris2019-07-06 12:52:12 -0700
commitd8732a82451fea57d6efa43e704e0c693e11b517 (patch)
tree7abe0bd16fa581fb9101a1eb67b29ba4030d9eaa /src
parent206a9b4be7ba6ab0b0204d1ef7ab86389f766c8a (diff)
parent1e6d8e003ce28f508e26eb7107ce5bd0e20bb4b8 (diff)
downloademacs-d8732a82451fea57d6efa43e704e0c693e11b517.tar.gz
emacs-d8732a82451fea57d6efa43e704e0c693e11b517.zip
Merge from origin/emacs-26
1e6d8e0 (origin/emacs-26) ; * doc/emacs/killing.texi (Secondary Selec... e2344a7 * lisp/svg.el, lisp/progmodes/ada-mode.el: Fix bug#36360. ff738ab Minor copyedit of "Font Lock" in user manual faf99dc Improve description of image descriptors 21351cc ; * src/lread.c (Fread): Make the comment wording more accurate. d176090 Improve documentation of secondary selections 8910fe1 * src/fns.c (Fmapconcat): Doc fix. (Bug#36418) # Conflicts: # lisp/svg.el
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
-rw-r--r--src/lread.c5
2 files changed, 5 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index 2fc000a7f43..77c0b15037f 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2674,7 +2674,7 @@ DEFUN ("mapconcat", Fmapconcat, Smapconcat, 3, 3, 0,
2674In between each pair of results, stick in SEPARATOR. Thus, " " as 2674In between each pair of results, stick in SEPARATOR. Thus, " " as
2675 SEPARATOR results in spaces between the values returned by FUNCTION. 2675 SEPARATOR results in spaces between the values returned by FUNCTION.
2676SEQUENCE may be a list, a vector, a bool-vector, or a string. 2676SEQUENCE may be a list, a vector, a bool-vector, or a string.
2677SEPARATOR must be a string. 2677SEPARATOR must be a string, a vector, or a list of characters.
2678FUNCTION must be a function of one argument, and must return a value 2678FUNCTION must be a function of one argument, and must return a value
2679 that is a sequence of characters: either a string, or a vector or 2679 that is a sequence of characters: either a string, or a vector or
2680 list of numbers that are valid character codepoints. */) 2680 list of numbers that are valid character codepoints. */)
diff --git a/src/lread.c b/src/lread.c
index 5fa90cad3f3..27529c3d630 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2209,7 +2209,10 @@ STREAM or the value of `standard-input' may be:
2209 if (EQ (stream, Qt)) 2209 if (EQ (stream, Qt))
2210 stream = Qread_char; 2210 stream = Qread_char;
2211 if (EQ (stream, Qread_char)) 2211 if (EQ (stream, Qread_char))
2212 /* FIXME: ?! When is this used !? */ 2212 /* FIXME: ?! This is used when the reader is called from the
2213 minibuffer without a stream, as in (read). But is this feature
2214 ever used, and if so, why? IOW, will anything break if this
2215 feature is removed !? */
2213 return call1 (intern ("read-minibuffer"), 2216 return call1 (intern ("read-minibuffer"),
2214 build_string ("Lisp expression: ")); 2217 build_string ("Lisp expression: "));
2215 2218