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
70da7cdb
...
70da7cdb634d4aed3951d7d2f9576ac6bacd6bff
authored
2004-06-23 06:50:11 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Use SCM_UNSPECIFIED where appropriate.
1 parent
a133bff2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
libmu_scm/mu_mailbox.c
libmu_scm/mu_message.c
libmu_scm/mu_mailbox.c
View file @
70da7cd
...
...
@@ -159,7 +159,7 @@ SCM_DEFINE (mu_mailbox_close, "mu-mailbox-close", 1, 0, 0,
mum
=
(
struct
mu_mailbox
*
)
SCM_CDR
(
MBOX
);
mailbox_close
(
mum
->
mbox
);
mailbox_destroy
(
&
mum
->
mbox
);
return
SCM_UN
DEFIN
ED
;
return
SCM_UN
SPECIFI
ED
;
}
#undef FUNC_NAME
...
...
libmu_scm/mu_message.c
View file @
70da7cd
...
...
@@ -464,7 +464,7 @@ SCM_DEFINE (mu_message_set_header_fields, "mu-message-set-header-fields", 2, 1,
cdr
,
SCM_ARGn
,
FUNC_NAME
);
header_set_value
(
hdr
,
SCM_STRING_CHARS
(
car
),
SCM_STRING_CHARS
(
cdr
),
replace
);
}
return
SCM_UN
DEFIN
ED
;
return
SCM_UN
SPECIFI
ED
;
}
#undef FUNC_NAME
...
...
@@ -491,7 +491,7 @@ SCM_DEFINE (mu_message_delete, "mu-message-delete", 1, 1, 0,
attribute_set_deleted
(
attr
);
else
attribute_unset_deleted
(
attr
);
return
SCM_UN
DEFIN
ED
;
return
SCM_UN
SPECIFI
ED
;
}
#undef FUNC_NAME
...
...
@@ -619,7 +619,7 @@ SCM_DEFINE (mu_message_set_flag, "mu-message-set-flag", 2, 1, 0,
if
(
value
)
attribute_set_flags
(
attr
,
SCM_INUM
(
FLAG
));
}
return
SCM_UN
DEFIN
ED
;
return
SCM_UN
SPECIFI
ED
;
}
#undef FUNC_NAME
...
...
@@ -667,7 +667,7 @@ SCM_DEFINE (mu_message_set_user_flag, "mu-message-set-user-flag", 2, 1, 0,
attribute_set_userflag
(
attr
,
SCM_INUM
(
FLAG
));
else
attribute_unset_userflag
(
attr
,
SCM_INUM
(
FLAG
));
return
SCM_UN
DEFIN
ED
;
return
SCM_UN
SPECIFI
ED
;
}
#undef FUNC_NAME
...
...
Please
register
or
sign in
to post a comment