aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChangeLog9
-rw-r--r--src/window.c2
2 files changed, 9 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index acf9681e002..fd202cfd53e 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12005-11-03 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * window.c (Fdisplay_buffer): Fix last change to not use
4 a dedicated window.
5
12005-11-01 Kim F. Storm <storm@cua.dk> 62005-11-01 Kim F. Storm <storm@cua.dk>
2 7
3 * fringe.c (update_window_fringes): Undo 2005-10-27 change. 8 * fringe.c (update_window_fringes): Undo 2005-10-27 change.
@@ -62,8 +67,8 @@
62 (decode_mode_spec): Test Vmemory_full, not spare_memory. 67 (decode_mode_spec): Test Vmemory_full, not spare_memory.
63 (Fformat_mode_line): Clear mode_line_proptrans_alist after saving. 68 (Fformat_mode_line): Clear mode_line_proptrans_alist after saving.
64 69
65 * lisp.h (memory_full_cons_threshold): Declared. 70 * lisp.h (memory_full_cons_threshold): Declare.
66 (internal_lisp_condition_case): Declared. 71 (internal_lisp_condition_case): Declare.
67 72
68 * alloc.c (syms_of_alloc) <memory-full>: Doc fix. 73 * alloc.c (syms_of_alloc) <memory-full>: Doc fix.
69 (Fmemory_full_p): Function deleted. 74 (Fmemory_full_p): Function deleted.
diff --git a/src/window.c b/src/window.c
index fe3572fba25..c49493f37ca 100644
--- a/src/window.c
+++ b/src/window.c
@@ -3535,6 +3535,8 @@ displayed. */)
3535 || EQ (XWINDOW (window)->parent, Qnil)) 3535 || EQ (XWINDOW (window)->parent, Qnil))
3536 && window_height (window) >= window_min_height << 1) 3536 && window_height (window) >= window_min_height << 1)
3537 window = Fsplit_window (window, Qnil, Qnil); 3537 window = Fsplit_window (window, Qnil, Qnil);
3538 else
3539 window = Fget_lru_window (frames, Qnil);
3538 /* If Fget_lru_window returned nil, try other approaches. */ 3540 /* If Fget_lru_window returned nil, try other approaches. */
3539 3541
3540 /* Try visible frames first. */ 3542 /* Try visible frames first. */