Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
V
Vim
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Someone-Else
Vim
Commits
fa316dd1
Commit
fa316dd1
authored
15 years ago
by
Bram Moolenaar
Browse files
Options
Downloads
Patches
Plain Diff
updated for version 7.2-277
parent
2ac5e603
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/move.c
+2
-4
2 additions, 4 deletions
src/move.c
src/version.c
+2
-0
2 additions, 0 deletions
src/version.c
with
4 additions
and
4 deletions
src/move.c
+
2
−
4
View file @
fa316dd1
...
...
@@ -183,9 +183,6 @@ update_topline()
if
(
curwin
->
w_topline
!=
1
)
redraw_later
(
NOT_VALID
);
curwin
->
w_topline
=
1
;
#ifdef FEAT_DIFF
curwin
->
w_topfill
=
0
;
#endif
curwin
->
w_botline
=
2
;
curwin
->
w_valid
|=
VALID_BOTLINE
|
VALID_BOTLINE_AP
;
#ifdef FEAT_SCROLLBIND
...
...
@@ -1257,7 +1254,8 @@ scrolldown(line_count, byfold)
while
(
line_count
--
>
0
)
{
#ifdef FEAT_DIFF
if
(
curwin
->
w_topfill
<
diff_check
(
curwin
,
curwin
->
w_topline
))
if
(
curwin
->
w_topfill
<
diff_check
(
curwin
,
curwin
->
w_topline
)
&&
curwin
->
w_topfill
<
curwin
->
w_height
-
1
)
{
++
curwin
->
w_topfill
;
++
done
;
...
...
This diff is collapsed.
Click to expand it.
src/version.c
+
2
−
0
View file @
fa316dd1
...
...
@@ -676,6 +676,8 @@ static char *(features[]) =
static
int
included_patches
[]
=
{
/* Add new patch number below this line */
/**/
277
,
/**/
276
,
/**/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment