Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4b26579e
Commit
4b26579e
authored
Mar 01, 2002
by
Kim F. Storm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(make_window, replace_window): Initialize phys_cursor_width.
parent
7e913f91
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
src/window.c
src/window.c
+2
-0
No files found.
src/window.c
View file @
4b26579e
...
...
@@ -275,6 +275,7 @@ make_window ()
bzero
(
&
p
->
phys_cursor
,
sizeof
(
p
->
phys_cursor
));
p
->
desired_matrix
=
p
->
current_matrix
=
0
;
p
->
phys_cursor_type
=
-
1
;
p
->
phys_cursor_width
=
-
1
;
p
->
must_be_updated_p
=
0
;
XSETFASTINT
(
p
->
window_end_vpos
,
0
);
XSETFASTINT
(
p
->
window_end_pos
,
0
);
...
...
@@ -1144,6 +1145,7 @@ replace_window (old, replacement)
bzero
(
&
p
->
last_cursor
,
sizeof
(
p
->
last_cursor
));
bzero
(
&
p
->
phys_cursor
,
sizeof
(
p
->
phys_cursor
));
p
->
phys_cursor_type
=
-
1
;
p
->
phys_cursor_width
=
-
1
;
p
->
must_be_updated_p
=
0
;
p
->
pseudo_window_p
=
0
;
XSETFASTINT
(
p
->
window_end_vpos
,
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