diff options
author | Glenn Morris <rgm@gnu.org> | 2019-07-06 12:52:12 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2019-07-06 12:52:12 -0700 |
commit | d8732a82451fea57d6efa43e704e0c693e11b517 (patch) | |
tree | 7abe0bd16fa581fb9101a1eb67b29ba4030d9eaa /src/lread.c | |
parent | 206a9b4be7ba6ab0b0204d1ef7ab86389f766c8a (diff) | |
parent | 1e6d8e003ce28f508e26eb7107ce5bd0e20bb4b8 (diff) | |
download | emacs-d8732a82451fea57d6efa43e704e0c693e11b517.tar.gz emacs-d8732a82451fea57d6efa43e704e0c693e11b517.tar.bz2 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/lread.c')
-rw-r--r-- | src/lread.c | 5 |
1 files changed, 4 insertions, 1 deletions
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: if (EQ (stream, Qt)) stream = Qread_char; if (EQ (stream, Qread_char)) - /* FIXME: ?! When is this used !? */ + /* FIXME: ?! This is used when the reader is called from the + minibuffer without a stream, as in (read). But is this feature + ever used, and if so, why? IOW, will anything break if this + feature is removed !? */ return call1 (intern ("read-minibuffer"), build_string ("Lisp expression: ")); |