X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/30934d334e8a67c8992d910428758d5b93e0f04f..1088b9226e7dac7314dab52ef0696a5f540900cd:/src/indent.c diff --git a/src/indent.c b/src/indent.c index 160b8c7479..c60315a7f6 100644 --- a/src/indent.c +++ b/src/indent.c @@ -122,7 +122,7 @@ disptab_matches_widthtab (struct Lisp_Char_Table *disptab, struct Lisp_Vector *w int i; if (widthtab->header.size != 256) - abort (); + emacs_abort (); for (i = 0; i < 256; i++) if (character_width (i, disptab) @@ -144,7 +144,7 @@ recompute_width_table (struct buffer *buf, struct Lisp_Char_Table *disptab) bset_width_table (buf, Fmake_vector (make_number (256), make_number (0))); widthtab = XVECTOR (BVAR (buf, width_table)); if (widthtab->header.size != 256) - abort (); + emacs_abort (); for (i = 0; i < 256; i++) XSETFASTINT (widthtab->contents[i], character_width (i, disptab));