diff options
author | Pavel Janík <Pavel@Janik.cz> | 2001-10-24 20:25:49 +0000 |
---|---|---|
committer | Pavel Janík <Pavel@Janik.cz> | 2001-10-24 20:25:49 +0000 |
commit | 075c507b421f19efa152abd612c21c090f40fe25 (patch) | |
tree | af36cb8c9b29a07ccd4611c8885730dbfb99ec9e /src | |
parent | d492b584fdb5f4318a35eb29767493adbbda3023 (diff) | |
download | emacs-075c507b421f19efa152abd612c21c090f40fe25.tar.gz emacs-075c507b421f19efa152abd612c21c090f40fe25.tar.bz2 emacs-075c507b421f19efa152abd612c21c090f40fe25.zip |
(sync_window_with_frame_matrix_rows): Remove unused variable `area'.
Diffstat (limited to 'src')
-rw-r--r-- | src/ChangeLog | 5 | ||||
-rw-r--r-- | src/dispnew.c | 2 |
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 @@ +2001-10-24 Pavel Jan,Bm(Bk <Pavel@Janik.cz> + + * dispnew.c (sync_window_with_frame_matrix_rows): Remove unused + variable `area'. + 2001-10-25 Pavel Jan,Bm(Bk <Pavel@Janik.cz> * 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) { struct frame *f = XFRAME (w->frame); struct glyph_row *window_row, *window_row_end, *frame_row; - int area, left, right, x, width; + int left, right, x, width; /* Preconditions: W must be a leaf window on a tty frame. */ xassert (NILP (w->hchild) && NILP (w->vchild)); |