aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPaul Eggert2011-03-10 13:46:21 -0800
committerPaul Eggert2011-03-10 13:46:21 -0800
commit500188f4835ff80e19e7b3207160f37f5807aa52 (patch)
tree49f0015b1488650f38051464711e374dd053ea24 /src
parentbf60f6168239d399ac5522025e7dd1bcf18afe24 (diff)
downloademacs-500188f4835ff80e19e7b3207160f37f5807aa52.tar.gz
emacs-500188f4835ff80e19e7b3207160f37f5807aa52.zip
* fringe.c (update_window_fringes): Initialize top_row_ends_at_zv_p and
bot_row_ends_at_zv_p, with a FIXME comment.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/fringe.c5
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index b6ab1e18dcc..a1c4b0fd967 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,8 @@
12011-03-10 Paul Eggert <eggert@cs.ucla.edu> 12011-03-10 Paul Eggert <eggert@cs.ucla.edu>
2 2
3 * fringe.c (destroy_fringe_bitmap, init_fringe_bitmap): Now static. 3 * fringe.c (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
4 (update_window_fringes): Initialize top_row_ends_at_zv_p and
5 bot_row_ends_at_zv_p, with a FIXME comment.
4 6
5 * alloc.c (mark_fringe_data): Move decl from here ... 7 * alloc.c (mark_fringe_data): Move decl from here ...
6 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here, 8 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
diff --git a/src/fringe.c b/src/fringe.c
index 84606a2c767..a980bdf146f 100644
--- a/src/fringe.c
+++ b/src/fringe.c
@@ -913,7 +913,10 @@ update_window_fringes (struct window *w, int keep_current_p)
913 int bitmap_cache[MAX_BITMAP_CACHE]; 913 int bitmap_cache[MAX_BITMAP_CACHE];
914 int top_ind_rn, bot_ind_rn; 914 int top_ind_rn, bot_ind_rn;
915 int top_ind_min_y, bot_ind_max_y; 915 int top_ind_min_y, bot_ind_max_y;
916 int top_row_ends_at_zv_p, bot_row_ends_at_zv_p; 916
917 /* FIXME: Do these need to be initialized? If not, please change
918 their "= 0"s to "IF_LINT (= 0)"s. Either way, please explain. */
919 int top_row_ends_at_zv_p = 0, bot_row_ends_at_zv_p = 0;
917 920
918 if (w->pseudo_window_p) 921 if (w->pseudo_window_p)
919 return 0; 922 return 0;