summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Feng <chris.w.feng@gmail.com>2016-02-24 08:58:02 +0100
committerMartin Rudalics <rudalics@gmx.at>2016-02-24 08:58:02 +0100
commitcab3f0a222412b1fd592b1c2f1e305fa245f9279 (patch)
treee4eaf98a578e5e96d62d332886c2e6ec01ee914a
parente01c72f8f4987f9de71130b8b6d8224999fc6c6f (diff)
downloademacs-cab3f0a222412b1fd592b1c2f1e305fa245f9279.tar.gz
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
-rw-r--r--src/dispnew.c2
-rw-r--r--src/frame.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c
index 433a6e9ed4a..f96db302781 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -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)
diff --git a/src/frame.c b/src/frame.c
index 8c86afe4efb..4f61332ace1 100644
--- a/src/frame.c
+++ b/src/frame.c
@@ -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);