diff options
| author | Gerd Moellmann <gerd@gnu.org> | 2000-09-21 20:54:57 +0000 |
|---|---|---|
| committer | Gerd Moellmann <gerd@gnu.org> | 2000-09-21 20:54:57 +0000 |
| commit | 6bbd7a29592594e23e5cb98467e608f10b00f877 (patch) | |
| tree | 1e60389bc0f5c349fc0a39b2609b1a60b084e133 /src/window.c | |
| parent | 8179cccd88a3f114b0e4891c033ecd302dfb094e (diff) | |
| download | emacs-6bbd7a29592594e23e5cb98467e608f10b00f877.tar.gz | |
Avoid some more compiler warnings.
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c index d9c807ccf93..6cdf2943e60 100644 --- a/src/window.c +++ b/src/window.c @@ -1770,6 +1770,9 @@ window_loop (type, obj, mini, frames) && NILP (XBUFFER (w->buffer)->name)) abort (); break; + + case WINDOW_LOOP_UNUSED: + break; } } @@ -3476,6 +3479,8 @@ shrink_window_lowest_first (w, height) Lisp_Object last_child; int delta = old_height - height; int last_top; + + last_child = Qnil; /* Find the last child. We are taking space from lowest windows first, so we iterate over children from the last child |
