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
bc5296e0
...
bc5296e032f5fee1d14bb3e2dac4ba290a212650
authored
2003-02-14 16:08:57 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Skip deleted messages.
1 parent
c9864c4a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
mail/next.c
mail/previous.c
mail/next.c
View file @
bc5296e
...
...
@@ -33,6 +33,8 @@ mail_next (int argc, char **argv)
int
rc
=
1
;
for
(
n
=
cursor
+
1
;
n
<=
total
;
n
++
)
{
if
(
util_isdeleted
(
n
))
continue
;
rc
=
util_get_message
(
mbox
,
n
,
&
msg
);
if
(
rc
==
0
)
break
;
...
...
mail/previous.c
View file @
bc5296e
...
...
@@ -33,6 +33,8 @@ mail_previous (int argc, char **argv)
int
rc
=
1
;
for
(
n
=
cursor
-
1
;
n
>
0
;
n
--
)
{
if
(
util_isdeleted
(
n
))
continue
;
rc
=
util_get_message
(
mbox
,
n
,
&
msg
);
if
(
rc
==
0
)
break
;
...
...
Please
register
or
sign in
to post a comment