diff options
| author | Paul Eggert | 2015-01-20 00:51:06 -0800 |
|---|---|---|
| committer | Paul Eggert | 2015-01-20 00:51:27 -0800 |
| commit | d13fc2913d7c106f3c78e16fa2961678b8f9c472 (patch) | |
| tree | eabcebec12691194bca7aed854e398afc9ace890 /src | |
| parent | f302475471df0553b3ee442112981f9b146e0b55 (diff) | |
| download | emacs-d13fc2913d7c106f3c78e16fa2961678b8f9c472.tar.gz emacs-d13fc2913d7c106f3c78e16fa2961678b8f9c472.zip | |
* dispnew.c: Remove no-longer-valid comment.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index e76be21dcdc..06b34d88077 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -413,11 +413,6 @@ adjust_glyph_matrix (struct window *w, struct glyph_matrix *matrix, int x, int y | |||
| 413 | new_rows = dim.height - matrix->rows_allocated; | 413 | new_rows = dim.height - matrix->rows_allocated; |
| 414 | matrix->rows = xpalloc (matrix->rows, &matrix->rows_allocated, | 414 | matrix->rows = xpalloc (matrix->rows, &matrix->rows_allocated, |
| 415 | new_rows, INT_MAX, sizeof *matrix->rows); | 415 | new_rows, INT_MAX, sizeof *matrix->rows); |
| 416 | /* As a side effect, this sets the object of each glyph in the | ||
| 417 | row to nil, so verify we will indeed get that. Redisplay | ||
| 418 | relies on the object of special glyphs (truncation and | ||
| 419 | continuation glyps and also blanks used to extend each line | ||
| 420 | on a TTY) to be nil. */ | ||
| 421 | memset (matrix->rows + old_alloc, 0, | 416 | memset (matrix->rows + old_alloc, 0, |
| 422 | (matrix->rows_allocated - old_alloc) * sizeof *matrix->rows); | 417 | (matrix->rows_allocated - old_alloc) * sizeof *matrix->rows); |
| 423 | } | 418 | } |