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
8c56a983
Commit
8c56a983
authored
Apr 25, 2001
by
Gerd Moellmann
Browse files
(try_window_id): Fix a case where window_end_pos
and window_end_bytepos were not adjusted.
parent
3ae14dd9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
0 deletions
+8
-0
src/ChangeLog
src/ChangeLog
+5
-0
src/xdisp.c
src/xdisp.c
+3
-0
No files found.
src/ChangeLog
View file @
8c56a983
2001-04-25 Gerd Moellmann <gerd@gnu.org>
* xdisp.c (try_window_id): Fix a case where window_end_pos
and window_end_bytepos were not adjusted.
2001-04-23 Gerd Moellmann <gerd@gnu.org>
2001-04-23 Gerd Moellmann <gerd@gnu.org>
* xfaces.c (compute_char_face): If buffer is unibyte, set CH to
* xfaces.c (compute_char_face): If buffer is unibyte, set CH to
...
...
src/xdisp.c
View file @
8c56a983
...
@@ -11622,6 +11622,9 @@ try_window_id (w)
...
@@ -11622,6 +11622,9 @@ try_window_id (w)
break;
break;
w->window_end_vpos = make_number (vpos);
w->window_end_vpos = make_number (vpos);
row = MATRIX_ROW (w->desired_matrix, vpos);
w->window_end_pos = make_number (Z - MATRIX_ROW_END_CHARPOS (row));
w->window_end_bytepos = Z_BYTE - MATRIX_ROW_END_BYTEPOS (row);
}
}
else
else
abort ();
abort ();
...
...
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