From f0786bcf9cc6939240fb42efdae0ebd08407fe1c Mon Sep 17 00:00:00 2001 From: Richard Russon Date: Thu, 7 Jun 2018 13:04:11 +0100 Subject: [PATCH] fix comment order --- mx.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/mx.h b/mx.h index 4da1b2fbf..6e1a40f39 100644 --- a/mx.h +++ b/mx.h @@ -44,21 +44,13 @@ struct stat; */ struct MxOps { - /** - * mbox_check - Check for new mail - * @param ctx Mailbox - * @param index_hint Remember our place in the index - * @retval >0 Success, e.g. #MUTT_REOPENED - * @retval -1 Error - */ - int (*mbox_open) (struct Context *ctx); /** * mbox_open - Open a mailbox * @param ctx Mailbox to open * @retval 0 Success * @retval -1 Error */ - int (*mbox_open_append)(struct Context *ctx, int flags); + int (*mbox_open) (struct Context *ctx); /** * mbox_open_append - Open a mailbox for appending * @param ctx Mailbox to open @@ -66,6 +58,14 @@ struct MxOps * @retval 0 Success * @retval -1 Failure */ + int (*mbox_open_append)(struct Context *ctx, int flags); + /** + * mbox_check - Check for new mail + * @param ctx Mailbox + * @param index_hint Remember our place in the index + * @retval >0 Success, e.g. #MUTT_REOPENED + * @retval -1 Error + */ int (*mbox_check) (struct Context *ctx, int *index_hint); /** * mbox_sync - Save changes to the mailbox -- 2.40.0