* xdisp.c (set_horizontal_scroll_bar): Don't use uninitialized local.

This commit is contained in:
Paul Eggert
2014-08-16 09:10:50 -07:00
parent 266821b087
commit 2b4c15d829
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2014-08-16 Paul Eggert <eggert@cs.ucla.edu>
* xdisp.c (set_horizontal_scroll_bar): Don't use uninitialized local.
2014-08-16 Martin Rudalics <rudalics@gmx.at>
* w32term.c (w32_horizontal_scroll_bar_handle_click): In y part

View File

@@ -15830,7 +15830,7 @@ set_horizontal_scroll_bar (struct window *w)
set_buffer_internal (old_buffer);
}
else
start = end = whole = 0;
start = end = whole = portion = 0;
w->hscroll_whole = whole;