** The Lisp reader now signals an overflow for plain decimal integers
that do not end in '.' and are outside Emacs range. Formerly the Lisp
reader silently converted them to floating-point numbers, and signaled
-overflow only for integers with a radix that are outside machine range
-(Bug#30408).
+overflow only for integers with a radix that are outside machine range.
+To get the old behavior, set the new, experimental variable
+read-integer-overflow-as-float to t and please email
+30408@debbugs.gnu.org if you need that. (Bug#30408).
---
** Some functions and variables obsolete since Emacs 22 have been removed:
if (!quoted && !uninterned_symbol)
{
- Lisp_Object result = string_to_number (read_buffer, 10, 0);
+ int flags = (read_integer_overflow_as_float
+ ? S2N_OVERFLOW_TO_FLOAT : 0);
+ Lisp_Object result = string_to_number (read_buffer, 10, flags);
if (! NILP (result))
return unbind_to (count, result);
}
doc: /* Non-nil means read recursive structures using #N= and #N# syntax. */);
Vread_circle = Qt;
+ DEFVAR_BOOL ("read-integer-overflow-as-float",
+ read_integer_overflow_as_float,
+ doc: /* Non-nil means `read' quietly treats an out-of-range integer as floating point.
+Nil (the default) means signal an overflow unless the integer ends in `.'.
+This variable is experimental; email 30408@debbugs.gnu.org if you need it. */);
+ read_integer_overflow_as_float = false;
+
DEFVAR_LISP ("load-path", Vload_path,
doc: /* List of directories to search for files to load.
Each element is a string (directory file name) or nil (meaning