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
6e55cbc2
Commit
6e55cbc2
authored
May 16, 1995
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Frecenter): Fix args to vmotion (overlooked in May 13 change).
parent
baea3bdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
4 deletions
+1
-4
src/window.c
src/window.c
+1
-4
No files found.
src/window.c
View file @
6e55cbc2
...
...
@@ -2780,7 +2780,6 @@ redraws with point in the center of the current window.")
register
struct
window
*
w
=
XWINDOW
(
selected_window
);
register
int
ht
=
window_internal_height
(
w
);
struct
position
pos
;
Lisp_Object
window
;
if
(
NILP
(
n
))
{
...
...
@@ -2802,9 +2801,7 @@ redraws with point in the center of the current window.")
if
(
XINT
(
n
)
<
0
)
XSETINT
(
n
,
XINT
(
n
)
+
ht
);
XSETWINDOW
(
window
,
w
);
pos
=
*
vmotion
(
point
,
-
XINT
(
n
),
window_internal_width
(
w
)
-
1
,
XINT
(
w
->
hscroll
),
window
);
pos
=
*
vmotion
(
point
,
-
XINT
(
n
),
w
);
Fset_marker
(
w
->
start
,
make_number
(
pos
.
bufpos
),
w
->
buffer
);
w
->
start_at_line_beg
=
((
pos
.
bufpos
==
BEGV
...
...
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