]> code.delx.au - gnu-emacs/commitdiff
(region_limit, Fget_internal_run_time): Use xsignal0.
authorKim F. Storm <storm@cua.dk>
Tue, 18 Jul 2006 13:26:30 +0000 (13:26 +0000)
committerKim F. Storm <storm@cua.dk>
Tue, 18 Jul 2006 13:26:30 +0000 (13:26 +0000)
src/editfns.c

index cf37c10a9d5a00b5c1f83315696fdb0d1231c87f..aea044db06824bb324a6d367972f67f8721925ea 100644 (file)
@@ -316,7 +316,7 @@ region_limit (beginningp)
   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 @@ systems that do not provide resolution finer than a second.  */)
 
   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;