Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
adeb02b8
...
adeb02b884b9ce3892d89d5656126f00a14cc260
authored
2003-01-05 17:00:01 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mail_z): Fixed scrolling.
1 parent
1b6a0453
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
mail/z.c
mail/z.c
View file @
adeb02b
...
...
@@ -110,7 +110,7 @@ mail_z (int argc, char **argv)
unsigned
int
pagelines
=
util_screen_lines
();
unsigned
int
count
;
int
dir
;
int
crs
;
int
crs
,
end
;
if
(
z_parse_args
(
argc
,
argv
,
&
count
,
&
dir
))
return
1
;
...
...
@@ -184,11 +184,11 @@ mail_z (int argc, char **argv)
}
cursor
=
crs
;
end
=
cursor
+
nlines
-
1
;
i
=
0
;
do
{
int
cnt
=
util_range_msg
(
crs
,
crs
+
nlines
-
1
,
int
cnt
=
util_range_msg
(
crs
,
end
,
MSG_NODELETED
|
MSG_SILENT
,
mail_from0
,
NULL
);
if
(
cnt
==
0
)
break
;
...
...
Please
register
or
sign in
to post a comment