Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
cs24-19fa
git_rec_nano
Commits
873e3d6f
Commit
873e3d6f
authored
7 years ago
by
Benno Schulenberg
Browse files
Options
Download
Email Patches
Plain Diff
tweaks: don't loop over an initializer
parent
54e4505b
master
feature/match-parens
refactor/readbility
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/winio.c
+8
-7
src/winio.c
with
8 additions
and
7 deletions
+8
-7
src/winio.c
View file @
873e3d6f
...
...
@@ -2914,16 +2914,17 @@ void edit_scroll(scroll_dir direction, int nrows)
if
(
direction
==
DOWNWARD
)
go_forward_chunks
(
editwinrows
-
nrows
,
&
line
,
&
leftedge
);
/* Draw new content on the blank rows inside the scrolled region
* (and on the bordering row too when it was deemed necessary). */
i
=
nrows
;
while
(
i
>
0
&&
line
!=
NULL
)
{
#ifndef NANO_TINY
/* If the first blank row is in the middle
of a softwrapped line
,
* compensate for the earlier onscreen chunks
of that line. */
if
(
ISSET
(
SOFTWRAP
)
&&
i
==
nrows
&&
line
!=
openfile
->
edittop
)
i
+=
leftedge
/
editwincols
;
/* Compensate for the earlier onscreen chunks
of a softwrapped line
* when the first blank row happens to be in the middle
of that line. */
if
(
ISSET
(
SOFTWRAP
)
&&
line
!=
openfile
->
edittop
)
i
+=
leftedge
/
editwincols
;
#endif
/* Draw new content on the blank rows inside the scrolled region
* (and on the bordering row too when it was deemed necessary). */
while
(
i
>
0
&&
line
!=
NULL
)
{
i
-=
update_line
(
line
,
(
line
==
openfile
->
current
)
?
openfile
->
current_x
:
0
);
line
=
line
->
next
;
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help