diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-10 22:06:36 -0800 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2011-03-10 22:06:36 -0800 |
commit | 4b1ec8634128e4389f400e948337f2839be44d8f (patch) | |
tree | db498015a54b6cefb0a6fd27fd840b6992e358cc /src/fringe.c | |
parent | 500188f4835ff80e19e7b3207160f37f5807aa52 (diff) | |
download | emacs-4b1ec8634128e4389f400e948337f2839be44d8f.tar.gz |
* fringe.c (update_window_fringes): Mark locals as initialized
Diffstat (limited to 'src/fringe.c')
-rw-r--r-- | src/fringe.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/fringe.c b/src/fringe.c index a980bdf146f..8e2f4eb8d24 100644 --- a/src/fringe.c +++ b/src/fringe.c @@ -913,10 +913,7 @@ update_window_fringes (struct window *w, int keep_current_p) int bitmap_cache[MAX_BITMAP_CACHE]; int top_ind_rn, bot_ind_rn; int top_ind_min_y, bot_ind_max_y; - - /* FIXME: Do these need to be initialized? If not, please change - their "= 0"s to "IF_LINT (= 0)"s. Either way, please explain. */ - int top_row_ends_at_zv_p = 0, bot_row_ends_at_zv_p = 0; + int top_row_ends_at_zv_p IF_LINT (= 0), bot_row_ends_at_zv_p IF_LINT (= 0); if (w->pseudo_window_p) return 0; |