diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2014-08-16 09:10:50 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2014-08-16 09:10:50 -0700 |
commit | 2b4c15d829feb716fddf3f064c35faa2b951098c (patch) | |
tree | 2f5fc959dc71d6f8160737d314f97b43b5c28215 /src/xdisp.c | |
parent | 266821b087057c25c5f7169d832b0bdc8b8a0aa5 (diff) | |
download | emacs-2b4c15d829feb716fddf3f064c35faa2b951098c.tar.gz |
* xdisp.c (set_horizontal_scroll_bar): Don't use uninitialized local.
Diffstat (limited to 'src/xdisp.c')
-rw-r--r-- | src/xdisp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index c46b4159de0..7553881b1f6 100644 --- a/src/xdisp.c +++ b/src/xdisp.c @@ -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; |