aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/lread.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lread.c b/src/lread.c
index f3ae4c98970..5d1967ece48 100644
--- a/src/lread.c
+++ b/src/lread.c
@@ -1461,7 +1461,6 @@ STREAM or the value of `standard-input' may be:
1461 Lisp_Object stream; 1461 Lisp_Object stream;
1462{ 1462{
1463 extern Lisp_Object Fread_minibuffer (); 1463 extern Lisp_Object Fread_minibuffer ();
1464 Lisp_Object tem;
1465 if (NILP (stream)) 1464 if (NILP (stream))
1466 stream = Vstandard_input; 1465 stream = Vstandard_input;
1467 if (EQ (stream, Qt)) 1466 if (EQ (stream, Qt))
@@ -2513,7 +2512,9 @@ read1 (readcharfun, pch, first_in_list)
2513 /* Kind of a hack; this will probably fail if characters 2512 /* Kind of a hack; this will probably fail if characters
2514 in the symbol name were escaped. Not really a big 2513 in the symbol name were escaped. Not really a big
2515 deal, though. */ 2514 deal, though. */
2516 Fcons (Fcons (result, readchar_count - Flength (Fsymbol_name (result))), 2515 Fcons (Fcons (result,
2516 make_number (readchar_count
2517 - XFASTINT (Flength (Fsymbol_name (result))))),
2517 Vread_symbol_positions_list); 2518 Vread_symbol_positions_list);
2518 return result; 2519 return result;
2519 } 2520 }