Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b30ab1b3
Commit
b30ab1b3
authored
Sep 22, 2000
by
Gerd Moellmann
Browse files
(enable_glyph_matrix_rows): Remove xasserts.
parent
b48f74cb
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
src/ChangeLog
src/ChangeLog
+7
-0
src/dispnew.c
src/dispnew.c
+0
-4
No files found.
src/ChangeLog
View file @
b30ab1b3
2000-09-22 Gerd Moellmann <gerd@gnu.org>
* dispnew.c (enable_glyph_matrix_rows): Remove xasserts.
* xdisp.c (try_window_reusing_current_matrix): More fixes
for the case window has a header-line.
2000-09-22 Dave Love <fx@gnu.org>
* xdisp.c (syms_of_xdisp): Defvar Vmenu_bar_update_hook to provide
...
...
src/dispnew.c
View file @
b30ab1b3
...
...
@@ -809,10 +809,6 @@ enable_glyph_matrix_rows (matrix, start, end, enabled_p)
int
start
,
end
;
int
enabled_p
;
{
xassert
(
start
<=
end
);
xassert
(
start
>=
0
&&
start
<
matrix
->
nrows
);
xassert
(
end
>=
0
&&
end
<=
matrix
->
nrows
);
for
(;
start
<
end
;
++
start
)
matrix
->
rows
[
start
].
enabled_p
=
enabled_p
!=
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment