diff options
Diffstat (limited to 'src/editfns.c')
| -rw-r--r-- | src/editfns.c | 4 |
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; |