diff options
| author | Kim F. Storm <storm@cua.dk> | 2006-07-18 13:25:53 +0000 |
|---|---|---|
| committer | Kim F. Storm <storm@cua.dk> | 2006-07-18 13:25:53 +0000 |
| commit | f439241f58ee1ab88f0b9affabfadc6534c551ed (patch) | |
| tree | 82d5c77b7f04b74d00402a76a9e46b2b7469b21c | |
| parent | 4c4dc0b09b15549b690d3a1baae7a3152acc67ee (diff) | |
| download | emacs-f439241f58ee1ab88f0b9affabfadc6534c551ed.tar.gz | |
(check_mark): Use xsignal0.
| -rw-r--r-- | src/callint.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/callint.c b/src/callint.c index c594f27c8b8..475042abbe1 100644 --- a/src/callint.c +++ b/src/callint.c @@ -174,7 +174,7 @@ check_mark (for_region) : "The mark is not set now"); if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive) && NILP (current_buffer->mark_active)) - Fsignal (Qmark_inactive, Qnil); + xsignal0 (Qmark_inactive); } /* If the list of args INPUT was produced with an explicit call to |
