diff options
| author | John Wiegley | 2016-03-03 23:52:27 -0800 |
|---|---|---|
| committer | John Wiegley | 2016-03-03 23:52:27 -0800 |
| commit | 68fa05fd936aeb5ed4d39a48c570b1d4c29e8f9c (patch) | |
| tree | d89797f701d48ac631cd7afb6db6fc47163ea9a9 /src | |
| parent | b6b565b4a1d0fedede8dbd325af1d4c63ec5ec58 (diff) | |
| parent | e6a381956048113f00ef08340e6f31df93ee0158 (diff) | |
| download | emacs-68fa05fd936aeb5ed4d39a48c570b1d4c29e8f9c.tar.gz emacs-68fa05fd936aeb5ed4d39a48c570b1d4c29e8f9c.zip | |
Merge from origin/emacs-25
e6a3819 Update HISTORY section in readme for the NextStep interface.
f67f1ed ; * doc/lispref/modes.texi (Font Lock Basics): Minor rewording.
7c81a0b Improve documentation of 'save-place-mode'
cab3f0a Allocate glyph matrices for the initial frame
e01c72f Fix white space in last checkin
370eb67 Make `insert-pair' always leave the cursor where documented
b594393 etc/NEWS: Mention the new second parameter to `package-install'
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 2 | ||||
| -rw-r--r-- | src/frame.c | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index fe07f793cb5..b05356a3b64 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -681,7 +681,7 @@ void | |||
| 681 | clear_glyph_matrix_rows (struct glyph_matrix *matrix, int start, int end) | 681 | clear_glyph_matrix_rows (struct glyph_matrix *matrix, int start, int end) |
| 682 | { | 682 | { |
| 683 | eassert (start <= end); | 683 | eassert (start <= end); |
| 684 | eassert (start >= 0 && start < matrix->nrows); | 684 | eassert (start >= 0 && start <= matrix->nrows); |
| 685 | eassert (end >= 0 && end <= matrix->nrows); | 685 | eassert (end >= 0 && end <= matrix->nrows); |
| 686 | 686 | ||
| 687 | for (; start < end; ++start) | 687 | for (; start < end; ++start) |
diff --git a/src/frame.c b/src/frame.c index df473aebc21..fd9f3ce0203 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -865,6 +865,9 @@ make_initial_frame (void) | |||
| 865 | /* The default value of menu-bar-mode is t. */ | 865 | /* The default value of menu-bar-mode is t. */ |
| 866 | set_menu_bar_lines (f, make_number (1), Qnil); | 866 | set_menu_bar_lines (f, make_number (1), Qnil); |
| 867 | 867 | ||
| 868 | /* Allocate glyph matrices. */ | ||
| 869 | adjust_frame_glyphs (f); | ||
| 870 | |||
| 868 | if (!noninteractive) | 871 | if (!noninteractive) |
| 869 | init_frame_faces (f); | 872 | init_frame_faces (f); |
| 870 | 873 | ||