aboutsummaryrefslogtreecommitdiffstats
path: root/src/eval.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval.c')
-rw-r--r--src/eval.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/eval.c b/src/eval.c
index 3a4953665e3..4f0d6c69a51 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -191,7 +191,7 @@ restore_stack_limits (Lisp_Object data)
191 191
192/* Call the Lisp debugger, giving it argument ARG. */ 192/* Call the Lisp debugger, giving it argument ARG. */
193 193
194static Lisp_Object 194Lisp_Object
195call_debugger (Lisp_Object arg) 195call_debugger (Lisp_Object arg)
196{ 196{
197 bool debug_while_redisplaying; 197 bool debug_while_redisplaying;
@@ -1493,7 +1493,7 @@ See also the function `condition-case'. */)
1493 immediate_quit = handling_signal = 0; 1493 immediate_quit = handling_signal = 0;
1494 abort_on_gc = 0; 1494 abort_on_gc = 0;
1495 if (gc_in_progress || waiting_for_input) 1495 if (gc_in_progress || waiting_for_input)
1496 abort (); 1496 emacs_abort ();
1497 1497
1498#if 0 /* rms: I don't know why this was here, 1498#if 0 /* rms: I don't know why this was here,
1499 but it is surely wrong for an error that is handled. */ 1499 but it is surely wrong for an error that is handled. */
@@ -1590,7 +1590,7 @@ void
1590xsignal (Lisp_Object error_symbol, Lisp_Object data) 1590xsignal (Lisp_Object error_symbol, Lisp_Object data)
1591{ 1591{
1592 Fsignal (error_symbol, data); 1592 Fsignal (error_symbol, data);
1593 abort (); 1593 emacs_abort ();
1594} 1594}
1595 1595
1596/* Like xsignal, but takes 0, 1, 2, or 3 args instead of a list. */ 1596/* Like xsignal, but takes 0, 1, 2, or 3 args instead of a list. */
@@ -2043,7 +2043,7 @@ eval_sub (Lisp_Object form)
2043 struct gcpro gcpro1, gcpro2, gcpro3; 2043 struct gcpro gcpro1, gcpro2, gcpro3;
2044 2044
2045 if (handling_signal) 2045 if (handling_signal)
2046 abort (); 2046 emacs_abort ();
2047 2047
2048 if (SYMBOLP (form)) 2048 if (SYMBOLP (form))
2049 { 2049 {
@@ -2207,7 +2207,7 @@ eval_sub (Lisp_Object form)
2207 is supported by this code. We need to either rewrite the 2207 is supported by this code. We need to either rewrite the
2208 subr to use a different argument protocol, or add more 2208 subr to use a different argument protocol, or add more
2209 cases to this switch. */ 2209 cases to this switch. */
2210 abort (); 2210 emacs_abort ();
2211 } 2211 }
2212 } 2212 }
2213 } 2213 }
@@ -2850,7 +2850,7 @@ usage: (funcall FUNCTION &rest ARGUMENTS) */)
2850 /* If a subr takes more than 8 arguments without using MANY 2850 /* If a subr takes more than 8 arguments without using MANY
2851 or UNEVALLED, we need to extend this function to support it. 2851 or UNEVALLED, we need to extend this function to support it.
2852 Until this is done, there is no way to call the function. */ 2852 Until this is done, there is no way to call the function. */
2853 abort (); 2853 emacs_abort ();
2854 } 2854 }
2855 } 2855 }
2856 } 2856 }
@@ -2981,7 +2981,7 @@ funcall_lambda (Lisp_Object fun, ptrdiff_t nargs,
2981 lexenv = Qnil; 2981 lexenv = Qnil;
2982 } 2982 }
2983 else 2983 else
2984 abort (); 2984 emacs_abort ();
2985 2985
2986 i = optional = rest = 0; 2986 i = optional = rest = 0;
2987 for (; CONSP (syms_left); syms_left = XCDR (syms_left)) 2987 for (; CONSP (syms_left); syms_left = XCDR (syms_left))
@@ -3195,7 +3195,7 @@ specbind (Lisp_Object symbol, Lisp_Object value)
3195 set_internal (symbol, value, Qnil, 1); 3195 set_internal (symbol, value, Qnil, 1);
3196 break; 3196 break;
3197 } 3197 }
3198 default: abort (); 3198 default: emacs_abort ();
3199 } 3199 }
3200} 3200}
3201 3201