aboutsummaryrefslogtreecommitdiffstats
path: root/src/window.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/window.c')
-rw-r--r--src/window.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/window.c b/src/window.c
index 93fef54c95f..87429b51448 100644
--- a/src/window.c
+++ b/src/window.c
@@ -387,7 +387,7 @@ the first window of that frame. */)
387 else if (! NILP (XWINDOW (window)->vchild)) 387 else if (! NILP (XWINDOW (window)->vchild))
388 window = XWINDOW (window)->vchild; 388 window = XWINDOW (window)->vchild;
389 else 389 else
390 abort (); 390 emacs_abort ();
391 } 391 }
392 392
393 return window; 393 return window;
@@ -1290,7 +1290,7 @@ If they are in the windows's left or right marginal areas, `left-margin'\n\
1290 return Qnil; 1290 return Qnil;
1291 1291
1292 default: 1292 default:
1293 abort (); 1293 emacs_abort ();
1294 } 1294 }
1295} 1295}
1296 1296
@@ -1949,7 +1949,7 @@ unshow_buffer (register struct window *w)
1949 buf = w->buffer; 1949 buf = w->buffer;
1950 b = XBUFFER (buf); 1950 b = XBUFFER (buf);
1951 if (b != XMARKER (w->pointm)->buffer) 1951 if (b != XMARKER (w->pointm)->buffer)
1952 abort (); 1952 emacs_abort ();
1953 1953
1954#if 0 1954#if 0
1955 if (w == XWINDOW (selected_window) 1955 if (w == XWINDOW (selected_window)
@@ -2670,7 +2670,7 @@ window_loop (enum window_loop type, Lisp_Object obj, int mini, Lisp_Object frame
2670 case CHECK_ALL_WINDOWS: 2670 case CHECK_ALL_WINDOWS:
2671 if (! NILP (w->buffer) 2671 if (! NILP (w->buffer)
2672 && NILP (BVAR (XBUFFER (w->buffer), name))) 2672 && NILP (BVAR (XBUFFER (w->buffer), name)))
2673 abort (); 2673 emacs_abort ();
2674 break; 2674 break;
2675 2675
2676 case WINDOW_LOOP_UNUSED: 2676 case WINDOW_LOOP_UNUSED:
@@ -6580,15 +6580,17 @@ freeze_window_starts (struct frame *f, int freeze_p)
6580/* Return 1 if window configurations CONFIGURATION1 and CONFIGURATION2 6580/* Return 1 if window configurations CONFIGURATION1 and CONFIGURATION2
6581 describe the same state of affairs. This is used by Fequal. 6581 describe the same state of affairs. This is used by Fequal.
6582 6582
6583 ignore_positions non-zero means ignore non-matching scroll positions 6583 IGNORE_POSITIONS means ignore non-matching scroll positions
6584 and the like. 6584 and the like.
6585 6585
6586 This ignores a couple of things like the dedication status of 6586 This ignores a couple of things like the dedication status of
6587 window, combination_limit and the like. This might have to be 6587 window, combination_limit and the like. This might have to be
6588 fixed. */ 6588 fixed. */
6589 6589
6590int 6590bool
6591compare_window_configurations (Lisp_Object configuration1, Lisp_Object configuration2, int ignore_positions) 6591compare_window_configurations (Lisp_Object configuration1,
6592 Lisp_Object configuration2,
6593 bool ignore_positions)
6592{ 6594{
6593 register struct save_window_data *d1, *d2; 6595 register struct save_window_data *d1, *d2;
6594 struct Lisp_Vector *sws1, *sws2; 6596 struct Lisp_Vector *sws1, *sws2;