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
f53df7de
Commit
f53df7de
authored
Feb 05, 2001
by
Gerd Moellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fmove_to_window_line): Don't add 1 if window is
vscrolled.
parent
b2065cb6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/window.c
src/window.c
+4
-0
No files found.
src/window.c
View file @
f53df7de
...
...
@@ -4660,9 +4660,13 @@ zero means top of window, negative means relative to bottom of window.")
XSETINT
(
arg
,
XINT
(
arg
)
+
lines
);
}
#if 0 /* I don't understand why this is done. Among other things,
it means that C-u 0 M-r moves to line 1, and C-u -1 M-r
moves to the line below the window end. 2000-02-05, gerd */
if (w->vscroll)
/* Skip past a partially visible first line. */
XSETINT (arg, XINT (arg) + 1);
#endif
return
Fvertical_motion
(
arg
,
window
);
}
...
...
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