Allocate glyph matrices for the initial frame
* src/frame.c (make_initial_frame): Allocate glyph matrices (Bug#22787). * src/dispnew.c (clear_glyph_matrix_rows): matrix->nrows can be 0. Copyright-paperwork-exempt: yes
This commit is contained in:
parent
e01c72f8f4
commit
cab3f0a222
2 changed files with 4 additions and 1 deletions
|
@ -683,7 +683,7 @@ void
|
|||
clear_glyph_matrix_rows (struct glyph_matrix *matrix, int start, int end)
|
||||
{
|
||||
eassert (start <= end);
|
||||
eassert (start >= 0 && start < matrix->nrows);
|
||||
eassert (start >= 0 && start <= matrix->nrows);
|
||||
eassert (end >= 0 && end <= matrix->nrows);
|
||||
|
||||
for (; start < end; ++start)
|
||||
|
|
|
@ -867,6 +867,9 @@ make_initial_frame (void)
|
|||
/* The default value of menu-bar-mode is t. */
|
||||
set_menu_bar_lines (f, make_number (1), Qnil);
|
||||
|
||||
/* Allocate glyph matrices. */
|
||||
adjust_frame_glyphs (f);
|
||||
|
||||
if (!noninteractive)
|
||||
init_frame_faces (f);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue