diff options
Diffstat (limited to 'src/w32term.c')
| -rw-r--r-- | src/w32term.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/w32term.c b/src/w32term.c index 6948a98998e..571db3cbe8e 100644 --- a/src/w32term.c +++ b/src/w32term.c | |||
| @@ -2426,7 +2426,7 @@ x_draw_glyph_string (struct glyph_string *s) | |||
| 2426 | break; | 2426 | break; |
| 2427 | 2427 | ||
| 2428 | default: | 2428 | default: |
| 2429 | abort (); | 2429 | emacs_abort (); |
| 2430 | } | 2430 | } |
| 2431 | 2431 | ||
| 2432 | if (!s->for_overlaps) | 2432 | if (!s->for_overlaps) |
| @@ -2626,7 +2626,7 @@ x_delete_glyphs (struct frame *f, register int n) | |||
| 2626 | if (! FRAME_W32_P (f)) | 2626 | if (! FRAME_W32_P (f)) |
| 2627 | return; | 2627 | return; |
| 2628 | 2628 | ||
| 2629 | abort (); | 2629 | emacs_abort (); |
| 2630 | } | 2630 | } |
| 2631 | 2631 | ||
| 2632 | 2632 | ||
| @@ -2709,7 +2709,7 @@ x_ins_del_lines (struct frame *f, int vpos, int n) | |||
| 2709 | if (! FRAME_W32_P (f)) | 2709 | if (! FRAME_W32_P (f)) |
| 2710 | return; | 2710 | return; |
| 2711 | 2711 | ||
| 2712 | abort (); | 2712 | emacs_abort (); |
| 2713 | } | 2713 | } |
| 2714 | 2714 | ||
| 2715 | 2715 | ||
| @@ -3431,7 +3431,7 @@ x_window_to_scroll_bar (Window window_id) | |||
| 3431 | frame = XCAR (tail); | 3431 | frame = XCAR (tail); |
| 3432 | /* All elements of Vframe_list should be frames. */ | 3432 | /* All elements of Vframe_list should be frames. */ |
| 3433 | if (! FRAMEP (frame)) | 3433 | if (! FRAMEP (frame)) |
| 3434 | abort (); | 3434 | emacs_abort (); |
| 3435 | 3435 | ||
| 3436 | /* Scan this frame's scroll bar list for a scroll bar with the | 3436 | /* Scan this frame's scroll bar list for a scroll bar with the |
| 3437 | right window ID. */ | 3437 | right window ID. */ |
| @@ -3854,7 +3854,7 @@ w32_redeem_scroll_bar (struct window *window) | |||
| 3854 | 3854 | ||
| 3855 | /* We can't redeem this window's scroll bar if it doesn't have one. */ | 3855 | /* We can't redeem this window's scroll bar if it doesn't have one. */ |
| 3856 | if (NILP (window->vertical_scroll_bar)) | 3856 | if (NILP (window->vertical_scroll_bar)) |
| 3857 | abort (); | 3857 | emacs_abort (); |
| 3858 | 3858 | ||
| 3859 | bar = XSCROLL_BAR (window->vertical_scroll_bar); | 3859 | bar = XSCROLL_BAR (window->vertical_scroll_bar); |
| 3860 | 3860 | ||
| @@ -3873,7 +3873,7 @@ w32_redeem_scroll_bar (struct window *window) | |||
| 3873 | else | 3873 | else |
| 3874 | /* If its prev pointer is nil, it must be at the front of | 3874 | /* If its prev pointer is nil, it must be at the front of |
| 3875 | one or the other! */ | 3875 | one or the other! */ |
| 3876 | abort (); | 3876 | emacs_abort (); |
| 3877 | } | 3877 | } |
| 3878 | else | 3878 | else |
| 3879 | XSCROLL_BAR (bar->prev)->next = bar->next; | 3879 | XSCROLL_BAR (bar->prev)->next = bar->next; |
| @@ -3928,7 +3928,7 @@ w32_scroll_bar_handle_click (struct scroll_bar *bar, W32Msg *msg, | |||
| 3928 | struct input_event *emacs_event) | 3928 | struct input_event *emacs_event) |
| 3929 | { | 3929 | { |
| 3930 | if (! WINDOWP (bar->window)) | 3930 | if (! WINDOWP (bar->window)) |
| 3931 | abort (); | 3931 | emacs_abort (); |
| 3932 | 3932 | ||
| 3933 | emacs_event->kind = SCROLL_BAR_CLICK_EVENT; | 3933 | emacs_event->kind = SCROLL_BAR_CLICK_EVENT; |
| 3934 | emacs_event->code = 0; | 3934 | emacs_event->code = 0; |
| @@ -5233,7 +5233,7 @@ w32_draw_window_cursor (struct window *w, struct glyph_row *glyph_row, | |||
| 5233 | break; | 5233 | break; |
| 5234 | 5234 | ||
| 5235 | default: | 5235 | default: |
| 5236 | abort (); | 5236 | emacs_abort (); |
| 5237 | } | 5237 | } |
| 5238 | } | 5238 | } |
| 5239 | } | 5239 | } |