aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2006-07-18 13:26:30 +0000
committerKim F. Storm2006-07-18 13:26:30 +0000
commit8a0ff74421535f810ca457712c80a867146d7d19 (patch)
tree554d9f9666535b35077878f8c62bea0617352359 /src
parent2f0a47f918391b8828540744acd36fd2fe328f62 (diff)
downloademacs-8a0ff74421535f810ca457712c80a867146d7d19.tar.gz
emacs-8a0ff74421535f810ca457712c80a867146d7d19.zip
(region_limit, Fget_internal_run_time): Use xsignal0.
Diffstat (limited to 'src')
-rw-r--r--src/editfns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/editfns.c b/src/editfns.c
index cf37c10a9d5..aea044db068 100644
--- a/src/editfns.c
+++ b/src/editfns.c
@@ -316,7 +316,7 @@ region_limit (beginningp)
316 if (!NILP (Vtransient_mark_mode) 316 if (!NILP (Vtransient_mark_mode)
317 && NILP (Vmark_even_if_inactive) 317 && NILP (Vmark_even_if_inactive)
318 && NILP (current_buffer->mark_active)) 318 && NILP (current_buffer->mark_active))
319 Fsignal (Qmark_inactive, Qnil); 319 xsignal0 (Qmark_inactive);
320 320
321 m = Fmarker_position (current_buffer->mark); 321 m = Fmarker_position (current_buffer->mark);
322 if (NILP (m)) 322 if (NILP (m))
@@ -1480,7 +1480,7 @@ systems that do not provide resolution finer than a second. */)
1480 1480
1481 if (getrusage (RUSAGE_SELF, &usage) < 0) 1481 if (getrusage (RUSAGE_SELF, &usage) < 0)
1482 /* This shouldn't happen. What action is appropriate? */ 1482 /* This shouldn't happen. What action is appropriate? */
1483 Fsignal (Qerror, Qnil); 1483 xsignal0 (Qerror);
1484 1484
1485 /* Sum up user time and system time. */ 1485 /* Sum up user time and system time. */
1486 secs = usage.ru_utime.tv_sec + usage.ru_stime.tv_sec; 1486 secs = usage.ru_utime.tv_sec + usage.ru_stime.tv_sec;