]> git.eshelyaron.com Git - emacs.git/commitdiff
* dispnew.c: Remove no-longer-valid comment.
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 20 Jan 2015 08:51:06 +0000 (00:51 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 20 Jan 2015 08:51:27 +0000 (00:51 -0800)
src/dispnew.c

index e76be21dcdcc21c70f7c6ba7c58f3cff3ed38f10..06b34d880773e411957e2ce696c81e633338fe55 100644 (file)
@@ -413,11 +413,6 @@ adjust_glyph_matrix (struct window *w, struct glyph_matrix *matrix, int x, int y
       new_rows = dim.height - matrix->rows_allocated;
       matrix->rows = xpalloc (matrix->rows, &matrix->rows_allocated,
                              new_rows, INT_MAX, sizeof *matrix->rows);
-      /* As a side effect, this sets the object of each glyph in the
-        row to nil, so verify we will indeed get that.  Redisplay
-        relies on the object of special glyphs (truncation and
-        continuation glyps and also blanks used to extend each line
-        on a TTY) to be nil.  */
       memset (matrix->rows + old_alloc, 0,
              (matrix->rows_allocated - old_alloc) * sizeof *matrix->rows);
     }