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
d88a79d4
Commit
d88a79d4
authored
May 11, 2001
by
Gerd Moellmann
Browse files
(try_window_id): Fix the fix and set the right
window_end_vpos.
parent
0416532f
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
+6
-3
src/xdisp.c
src/xdisp.c
+1
-1
No files found.
src/ChangeLog
View file @
d88a79d4
2001-05-11 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (try_window_id): Fix computation of window end in
the case that lines were deleted at the end of the window.
Add some more debug_method_adds.
* xdisp.c (try_window_id): Fix the fix and set the right
window_end_vpos.
* xdisp.c (try_window_id): Fix computation of window end in the
case that lines were deleted at the end of the window. Add some
more debug_method_adds.
* xfaces.c (try_alternative_families): New function.
(try_font_list): Use it. If ATTRS specifies a family, check
...
...
src/xdisp.c
View file @
d88a79d4
...
...
@@ -11707,7 +11707,7 @@ try_window_id (w)
}
xassert (row != NULL);
w->window_end_vpos = make_number (vpos);
w->window_end_vpos = make_number (vpos
+ 1
);
w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
xassert (w->window_end_bytepos >= 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