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
6f4c2453
Commit
6f4c2453
authored
Jun 21, 1994
by
Richard M. Stallman
Browse files
(show_mouse_face): Set endcolumn ok in side-by-side windows.
parent
9af40217
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/xterm.c
src/xterm.c
+1
-1
No files found.
src/xterm.c
View file @
6f4c2453
...
...
@@ -2398,7 +2398,7 @@ show_mouse_face (hl)
{
int
column
=
(
i
==
mouse_face_beg_row
?
mouse_face_beg_col
:
w
->
left
);
int
endcolumn
=
(
i
==
mouse_face_end_row
?
mouse_face_end_col
:
w
->
left
+
width
);
endcolumn
=
min
(
endcolumn
,
FRAME_CURRENT_GLYPHS
(
f
)
->
used
[
i
]
-
w
->
left
);
endcolumn
=
min
(
endcolumn
,
FRAME_CURRENT_GLYPHS
(
f
)
->
used
[
i
]);
/* If the cursor's in the text we are about to rewrite,
turn the cursor off. */
...
...
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