From: Richard Russon Date: Tue, 20 Aug 2019 18:54:29 +0000 (+0100) Subject: docs: rename mutt to neomutt X-Git-Tag: 2019-10-25~91^2~3 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3cbbeeaf4a50f0d5d2bf9b3a57cce018da252283;p=neomutt docs: rename mutt to neomutt --- diff --git a/autocrypt/autocrypt.c b/autocrypt/autocrypt.c index d449780f0..e4bf134b1 100644 --- a/autocrypt/autocrypt.c +++ b/autocrypt/autocrypt.c @@ -65,7 +65,7 @@ static int autocrypt_dir_init(bool can_create) struct Buffer *prompt = mutt_buffer_pool_get(); /* L10N: - %s is a directory. Mutt is looking for a directory it needs + %s is a directory. NeoMutt is looking for a directory it needs for some reason (e.g. autocrypt, header cache, bcache), but it doesn't exist. The prompt is asking whether to create the directory */ @@ -151,7 +151,7 @@ int mutt_autocrypt_account_init(bool prompt) if (prompt) { /* L10N: - The first time mutt is started with $autocrypt set, it will + The first time NeoMutt is started with $autocrypt set, it will create $autocrypt_dir and then prompt to create an autocrypt account with this message. */ @@ -900,7 +900,7 @@ void mutt_autocrypt_scan_mailboxes(void) struct Buffer *folderbuf = mutt_buffer_pool_get(); /* L10N: - The first time autocrypt is enabled, Mutt will ask to scan + The first time autocrypt is enabled, NeoMutt will ask to scan through one or more mailboxes for Autocrypt: headers. Those headers are then captured in the database as peer records and used for encryption. diff --git a/autocrypt/autocrypt_schema.c b/autocrypt/autocrypt_schema.c index 9021a5517..05b0f55ef 100644 --- a/autocrypt/autocrypt_schema.c +++ b/autocrypt/autocrypt_schema.c @@ -119,7 +119,7 @@ int mutt_autocrypt_schema_update(void) /* L10N: The autocrypt database keeps track of schema version numbers. This error occurs if the version number is too high. - Presumably because this is an old version of mutt and the + Presumably because this is an old version of NeoMutt and the database was upgraded by a future version. */ mutt_error(_("Autocrypt database version is too new")); diff --git a/compress.c b/compress.c index dd0a8b134..e3f2026ed 100644 --- a/compress.c +++ b/compress.c @@ -267,7 +267,7 @@ static const char *compress_format_str(char *buf, size_t buflen, size_t col, int struct Mailbox *m = (struct Mailbox *) data; /* NOTE the compressed file config vars expect %f and %t to be - * surrounded by '' (unlike other Mutt config vars, which add the + * surrounded by '' (unlike other NeoMutt config vars, which add the * outer quotes for the user). This is why we use the * mutt_buffer_quote_filename() form with add_outer of false. */ struct Buffer *quoted = mutt_buffer_pool_get(); diff --git a/icommands.c b/icommands.c index 43a78ef9d..29d1d0345 100644 --- a/icommands.c +++ b/icommands.c @@ -51,7 +51,7 @@ static enum CommandResult icmd_version(struct Buffer *buf, struct Buffer *s, uns /** * ICommandList - All available informational commands * - * @note These commands take precedence over conventional mutt rc-lines + * @note These commands take precedence over conventional NeoMutt rc-lines */ const struct ICommand ICommandList[] = { { "bind", icmd_bind, 0 }, diff --git a/imap/command.c b/imap/command.c index ed39492f6..4c2ff6df0 100644 --- a/imap/command.c +++ b/imap/command.c @@ -504,7 +504,7 @@ static void cmd_parse_fetch(struct ImapAccountData *adata, char *s) imap_set_flags(adata->mailbox, e, flags, &server_changes); if (server_changes) { - /* If server flags could conflict with mutt's flags, reopen the mailbox. */ + /* If server flags could conflict with NeoMutt's flags, reopen the mailbox. */ if (e->changed) mdata->reopen |= IMAP_EXPUNGE_PENDING; else diff --git a/imap/imap.c b/imap/imap.c index 82f48098b..0df031d2f 100644 --- a/imap/imap.c +++ b/imap/imap.c @@ -294,7 +294,7 @@ static bool compare_flags_for_copy(struct Email *e) * sync_helper - Sync flag changes to the server * @param m Selected Imap Mailbox * @param right ACL, see #AclFlags - * @param flag Mutt flag, e.g. #MUTT_DELETED + * @param flag NeoMutt flag, e.g. #MUTT_DELETED * @param name Name of server flag * @retval >=0 Success, number of messages * @retval -1 Failure diff --git a/imap/message.c b/imap/message.c index 93df9b35a..8f72cb2dd 100644 --- a/imap/message.c +++ b/imap/message.c @@ -1319,7 +1319,7 @@ int imap_read_headers(struct Mailbox *m, unsigned int msn_begin, if ((adata->capabilities & IMAP_CAP_CONDSTORE) && C_ImapCondstore) has_condstore = true; - /* If IMAP_CAP_QRESYNC and ImapQResync then Mutt sends ENABLE QRESYNC. + /* If IMAP_CAP_QRESYNC and ImapQResync then NeoMutt sends ENABLE QRESYNC. * If we receive an ENABLED response back, then adata->qresync is set. */ if (adata->qresync) has_qresync = true; diff --git a/mutt_logging.c b/mutt_logging.c index 196cda7bb..ed286d097 100644 --- a/mutt_logging.c +++ b/mutt_logging.c @@ -1,6 +1,6 @@ /** * @file - * Mutt Logging + * NeoMutt Logging * * @authors * Copyright (C) 2018 Richard Russon @@ -21,9 +21,9 @@ */ /** - * @page mutt_logging Mutt Logging + * @page mutt_logging NeoMutt Logging * - * Mutt Logging + * NeoMutt Logging */ #include "config.h" diff --git a/mutt_logging.h b/mutt_logging.h index 2c873cd2c..83df46725 100644 --- a/mutt_logging.h +++ b/mutt_logging.h @@ -1,6 +1,6 @@ /** * @file - * Mutt Logging + * NeoMutt Logging * * @authors * Copyright (C) 2018 Richard Russon