aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c
index 8dc5000424e..4ab37e86ce5 100644
--- a/src/data.c
+++ b/src/data.c
@@ -4217,10 +4217,11 @@ syms_of_data (void)
4217 Fput (Qrecursion_error, Qerror_message, build_pure_c_string 4217 Fput (Qrecursion_error, Qerror_message, build_pure_c_string
4218 ("Excessive recursive calling error")); 4218 ("Excessive recursive calling error"));
4219 4219
4220 PUT_ERROR (Qexcessive_variable_binding, recursion_tail,
4221 "Variable binding depth exceeds max-specpdl-size");
4222 PUT_ERROR (Qexcessive_lisp_nesting, recursion_tail, 4220 PUT_ERROR (Qexcessive_lisp_nesting, recursion_tail,
4223 "Lisp nesting exceeds `max-lisp-eval-depth'"); 4221 "Lisp nesting exceeds `max-lisp-eval-depth'");
4222 /* Error obsolete (from 29.1), kept for compatibility. */
4223 PUT_ERROR (Qexcessive_variable_binding, recursion_tail,
4224 "Variable binding depth exceeds max-specpdl-size");
4224 4225
4225 /* Types that type-of returns. */ 4226 /* Types that type-of returns. */
4226 DEFSYM (Qinteger, "integer"); 4227 DEFSYM (Qinteger, "integer");