X-Git-Url: http://git.chise.org/gitweb/?a=blobdiff_plain;f=src%2Fmarker.c;h=c8b8663dc473fae1c736aaa7155f024ac85f01bf;hb=c84990d1037000e9487a437491a853975b356e5a;hp=9e57b2e04367b885ebe34b6950bebef995790089;hpb=98a6e4055a1fa624c592ac06f79287d55196ca37;p=chise%2Fxemacs-chise.git.1 diff --git a/src/marker.c b/src/marker.c index 9e57b2e..c8b8663 100644 --- a/src/marker.c +++ b/src/marker.c @@ -339,7 +339,7 @@ bi_marker_position (Lisp_Object marker) #ifdef ERROR_CHECK_BUFPOS if (pos < BI_BUF_BEG (buf) || pos > BI_BUF_Z (buf)) - abort (); + ABORT (); #endif return pos; @@ -367,7 +367,7 @@ set_bi_marker_position (Lisp_Object marker, Bytind pos) #ifdef ERROR_CHECK_BUFPOS if (pos < BI_BUF_BEG (buf) || pos > BI_BUF_Z (buf)) - abort (); + ABORT (); #endif m->memind = bytind_to_memind (buf, pos);