Mercurial > emacs
changeset 71975:6d29dff081c5
(region_limit, Fget_internal_run_time): Use xsignal0.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Tue, 18 Jul 2006 13:26:30 +0000 |
parents | 9208340e9cad |
children | 66a9a086ddbb |
files | src/editfns.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/editfns.c Tue Jul 18 13:26:24 2006 +0000 +++ b/src/editfns.c Tue Jul 18 13:26:30 2006 +0000 @@ -316,7 +316,7 @@ if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive) && NILP (current_buffer->mark_active)) - Fsignal (Qmark_inactive, Qnil); + xsignal0 (Qmark_inactive); m = Fmarker_position (current_buffer->mark); if (NILP (m)) @@ -1480,7 +1480,7 @@ if (getrusage (RUSAGE_SELF, &usage) < 0) /* This shouldn't happen. What action is appropriate? */ - Fsignal (Qerror, Qnil); + xsignal0 (Qerror); /* Sum up user time and system time. */ secs = usage.ru_utime.tv_sec + usage.ru_stime.tv_sec;