summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2019-07-06 11:40:49 +0300
committerEli Zaretskii <eliz@gnu.org>2019-07-06 11:40:49 +0300
commit21351ccc0081167a6dc1b9e9327217c5efdb6827 (patch)
tree2b24288f6befc7b284533c019be2d84a8f75c896
parentd176090fc28ce3031213bc008919c1895f78d778 (diff)
downloademacs-21351ccc0081167a6dc1b9e9327217c5efdb6827.tar.gz
; * src/lread.c (Fread): Make the comment wording more accurate.
-rw-r--r--src/lread.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c
index b0eb29a2a1f..5c7bd3993d1 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -2172,7 +2172,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: "));