Use SCM_UNSPECIFIED where appropriate.
Showing
2 changed files
with
5 additions
and
5 deletions
... | @@ -159,7 +159,7 @@ SCM_DEFINE (mu_mailbox_close, "mu-mailbox-close", 1, 0, 0, | ... | @@ -159,7 +159,7 @@ SCM_DEFINE (mu_mailbox_close, "mu-mailbox-close", 1, 0, 0, |
159 | mum = (struct mu_mailbox *) SCM_CDR (MBOX); | 159 | mum = (struct mu_mailbox *) SCM_CDR (MBOX); |
160 | mailbox_close (mum->mbox); | 160 | mailbox_close (mum->mbox); |
161 | mailbox_destroy (&mum->mbox); | 161 | mailbox_destroy (&mum->mbox); |
162 | return SCM_UNDEFINED; | 162 | return SCM_UNSPECIFIED; |
163 | } | 163 | } |
164 | #undef FUNC_NAME | 164 | #undef FUNC_NAME |
165 | 165 | ... | ... |
... | @@ -464,7 +464,7 @@ SCM_DEFINE (mu_message_set_header_fields, "mu-message-set-header-fields", 2, 1, | ... | @@ -464,7 +464,7 @@ SCM_DEFINE (mu_message_set_header_fields, "mu-message-set-header-fields", 2, 1, |
464 | cdr, SCM_ARGn, FUNC_NAME); | 464 | cdr, SCM_ARGn, FUNC_NAME); |
465 | header_set_value (hdr, SCM_STRING_CHARS (car), SCM_STRING_CHARS (cdr), replace); | 465 | header_set_value (hdr, SCM_STRING_CHARS (car), SCM_STRING_CHARS (cdr), replace); |
466 | } | 466 | } |
467 | return SCM_UNDEFINED; | 467 | return SCM_UNSPECIFIED; |
468 | } | 468 | } |
469 | #undef FUNC_NAME | 469 | #undef FUNC_NAME |
470 | 470 | ||
... | @@ -491,7 +491,7 @@ SCM_DEFINE (mu_message_delete, "mu-message-delete", 1, 1, 0, | ... | @@ -491,7 +491,7 @@ SCM_DEFINE (mu_message_delete, "mu-message-delete", 1, 1, 0, |
491 | attribute_set_deleted (attr); | 491 | attribute_set_deleted (attr); |
492 | else | 492 | else |
493 | attribute_unset_deleted (attr); | 493 | attribute_unset_deleted (attr); |
494 | return SCM_UNDEFINED; | 494 | return SCM_UNSPECIFIED; |
495 | } | 495 | } |
496 | #undef FUNC_NAME | 496 | #undef FUNC_NAME |
497 | 497 | ||
... | @@ -619,7 +619,7 @@ SCM_DEFINE (mu_message_set_flag, "mu-message-set-flag", 2, 1, 0, | ... | @@ -619,7 +619,7 @@ SCM_DEFINE (mu_message_set_flag, "mu-message-set-flag", 2, 1, 0, |
619 | if (value) | 619 | if (value) |
620 | attribute_set_flags (attr, SCM_INUM (FLAG)); | 620 | attribute_set_flags (attr, SCM_INUM (FLAG)); |
621 | } | 621 | } |
622 | return SCM_UNDEFINED; | 622 | return SCM_UNSPECIFIED; |
623 | } | 623 | } |
624 | #undef FUNC_NAME | 624 | #undef FUNC_NAME |
625 | 625 | ||
... | @@ -667,7 +667,7 @@ SCM_DEFINE (mu_message_set_user_flag, "mu-message-set-user-flag", 2, 1, 0, | ... | @@ -667,7 +667,7 @@ SCM_DEFINE (mu_message_set_user_flag, "mu-message-set-user-flag", 2, 1, 0, |
667 | attribute_set_userflag (attr, SCM_INUM (FLAG)); | 667 | attribute_set_userflag (attr, SCM_INUM (FLAG)); |
668 | else | 668 | else |
669 | attribute_unset_userflag (attr, SCM_INUM (FLAG)); | 669 | attribute_unset_userflag (attr, SCM_INUM (FLAG)); |
670 | return SCM_UNDEFINED; | 670 | return SCM_UNSPECIFIED; |
671 | } | 671 | } |
672 | #undef FUNC_NAME | 672 | #undef FUNC_NAME |
673 | 673 | ... | ... |
-
Please register or sign in to post a comment