mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-27 07:37:33 +00:00
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
@ -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…
Reference in New Issue
Block a user