summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2018-04-24 14:25:55 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2018-04-24 15:50:17 -0700
commit1a6f59573603a57f64f4bc8866d482a20ef1ea52 (patch)
tree404d50e383ec36a94bd98aa676a87fac3577efbd
parent449751a02fc2342386e52d0d7731d8a1f079df84 (diff)
downloademacs-1a6f59573603a57f64f4bc8866d482a20ef1ea52.tar.gz
* src/minibuf.c (read_minibuf): Add a FIXME comment.
-rw-r--r--src/minibuf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/minibuf.c b/src/minibuf.c
index 5cb6919a0f5..11b3fe2b9c2 100644
--- a/src/minibuf.c
+++ b/src/minibuf.c
@@ -595,6 +595,10 @@ read_minibuf (Lisp_Object map, Lisp_Object initial, Lisp_Object prompt,
XWINDOW (minibuf_window)->hscroll = 0;
XWINDOW (minibuf_window)->suspend_auto_hscroll = 0;
+ /* Why does this code set print-escape-newlines? No call to Fprin1
+ or to Fprint is anywhere in sight. FIXME: Either remove the next
+ two lines of code along with this comment, or replace this
+ comment with an explanation for why the two lines are needed. */
Fmake_local_variable (Qprint_escape_newlines);
print_escape_newlines = 1;