aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorYAMAMOTO Mitsuharu2011-03-11 12:56:20 +0900
committerYAMAMOTO Mitsuharu2011-03-11 12:56:20 +0900
commit126bc0dcacb6704b8db9e82c4af3eedd1b239715 (patch)
tree28e3c3c6b832d23bddc4ee571267adb11a95ec81 /src
parentc47cbdfd2e29e350b3b7736cc1a66fcae8a99830 (diff)
downloademacs-126bc0dcacb6704b8db9e82c4af3eedd1b239715.tar.gz
emacs-126bc0dcacb6704b8db9e82c4af3eedd1b239715.zip
* src/fringe.c (update_window_fringes): Remove unused variables.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog2
-rw-r--r--src/fringe.c8
2 files changed, 2 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 1d974876c52..a4a80cbf9f5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,7 @@
12011-03-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> 12011-03-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2 2
3 * fringe.c (update_window_fringes): Remove unused variables.
4
3 * unexmacosx.c (copy_data_segment): Also copy __got section. 5 * unexmacosx.c (copy_data_segment): Also copy __got section.
4 (Bug#8223) 6 (Bug#8223)
5 7
diff --git a/src/fringe.c b/src/fringe.c
index 4a6d898d97f..861aa6e9487 100644
--- a/src/fringe.c
+++ b/src/fringe.c
@@ -991,18 +991,10 @@ update_window_fringes (w, keep_current_p)
991 y < yb && rn < nrows; 991 y < yb && rn < nrows;
992 y += row->height, ++rn) 992 y += row->height, ++rn)
993 { 993 {
994 unsigned indicate_bob_p, indicate_top_line_p;
995 unsigned indicate_eob_p, indicate_bottom_line_p;
996
997 row = w->desired_matrix->rows + rn; 994 row = w->desired_matrix->rows + rn;
998 if (!row->enabled_p) 995 if (!row->enabled_p)
999 row = w->current_matrix->rows + rn; 996 row = w->current_matrix->rows + rn;
1000 997
1001 indicate_bob_p = row->indicate_bob_p;
1002 indicate_top_line_p = row->indicate_top_line_p;
1003 indicate_eob_p = row->indicate_eob_p;
1004 indicate_bottom_line_p = row->indicate_bottom_line_p;
1005
1006 row->indicate_bob_p = row->indicate_top_line_p = 0; 998 row->indicate_bob_p = row->indicate_top_line_p = 0;
1007 row->indicate_eob_p = row->indicate_bottom_line_p = 0; 999 row->indicate_eob_p = row->indicate_bottom_line_p = 0;
1008 1000