aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2006-07-18 13:25:53 +0000
committerKim F. Storm2006-07-18 13:25:53 +0000
commitf439241f58ee1ab88f0b9affabfadc6534c551ed (patch)
tree82d5c77b7f04b74d00402a76a9e46b2b7469b21c /src
parent4c4dc0b09b15549b690d3a1baae7a3152acc67ee (diff)
downloademacs-f439241f58ee1ab88f0b9affabfadc6534c551ed.tar.gz
emacs-f439241f58ee1ab88f0b9affabfadc6534c551ed.zip
(check_mark): Use xsignal0.
Diffstat (limited to 'src')
-rw-r--r--src/callint.c2
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)
174 : "The mark is not set now"); 174 : "The mark is not set now");
175 if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive) 175 if (!NILP (Vtransient_mark_mode) && NILP (Vmark_even_if_inactive)
176 && NILP (current_buffer->mark_active)) 176 && NILP (current_buffer->mark_active))
177 Fsignal (Qmark_inactive, Qnil); 177 xsignal0 (Qmark_inactive);
178} 178}
179 179
180/* If the list of args INPUT was produced with an explicit call to 180/* If the list of args INPUT was produced with an explicit call to