aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2001-10-24 20:25:49 +0000
committerPavel Janík2001-10-24 20:25:49 +0000
commit075c507b421f19efa152abd612c21c090f40fe25 (patch)
treeaf36cb8c9b29a07ccd4611c8885730dbfb99ec9e /src
parentd492b584fdb5f4318a35eb29767493adbbda3023 (diff)
downloademacs-075c507b421f19efa152abd612c21c090f40fe25.tar.gz
emacs-075c507b421f19efa152abd612c21c090f40fe25.zip
(sync_window_with_frame_matrix_rows): Remove unused variable `area'.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog5
-rw-r--r--src/dispnew.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 70b92f906f3..747fb9c11b5 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,8 @@
12001-10-24 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2
3 * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused
4 variable `area'.
5
12001-10-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> 62001-10-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz>
2 7
3 * search.c (scan_newline): Remove unused variable 8 * search.c (scan_newline): Remove unused variable
diff --git a/src/dispnew.c b/src/dispnew.c
index a7652d88d7c..51aabc915f1 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -3013,7 +3013,7 @@ sync_window_with_frame_matrix_rows (w)
3013{ 3013{
3014 struct frame *f = XFRAME (w->frame); 3014 struct frame *f = XFRAME (w->frame);
3015 struct glyph_row *window_row, *window_row_end, *frame_row; 3015 struct glyph_row *window_row, *window_row_end, *frame_row;
3016 int area, left, right, x, width; 3016 int left, right, x, width;
3017 3017
3018 /* Preconditions: W must be a leaf window on a tty frame. */ 3018 /* Preconditions: W must be a leaf window on a tty frame. */
3019 xassert (NILP (w->hchild) && NILP (w->vchild)); 3019 xassert (NILP (w->hchild) && NILP (w->vchild));