Skip to content

Commit

Permalink
Use exclude instead of blacklist in API documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
whitney-cumber authored and flatcap committed Feb 3, 2023
1 parent 818d3b9 commit eb70049
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion alternates.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
#include "init.h"

struct RegexList Alternates = STAILQ_HEAD_INITIALIZER(Alternates); ///< List of regexes to match the user's alternate email addresses
struct RegexList UnAlternates = STAILQ_HEAD_INITIALIZER(UnAlternates); ///< List of regexes to blacklist false matches in Alternates
struct RegexList UnAlternates = STAILQ_HEAD_INITIALIZER(UnAlternates); ///< List of regexes to exclude false matches in Alternates
static struct Notify *AlternatesNotify = NULL;

/**
Expand Down
4 changes: 2 additions & 2 deletions email/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ extern struct ReplaceList SpamList; ///< List of regexes and patterns to
extern struct ListHead UnIgnore; ///< List of header patterns to unignore (see)
extern struct ListHead MailToAllow; ///< List of permitted fields in a mailto: url
extern struct HashTable *AutoSubscribeCache;///< Hash Table of auto-subscribed mailing lists
extern struct RegexList UnSubscribedLists; ///< List of regexes to blacklist false matches in SubscribedLists
extern struct RegexList UnSubscribedLists; ///< List of regexes to exclude false matches in SubscribedLists
extern struct RegexList MailLists; ///< List of regexes to match mailing lists
extern struct RegexList UnMailLists; ///< List of regexes to blacklist false matches in MailLists
extern struct RegexList UnMailLists; ///< List of regexes to exclude false matches in MailLists
extern struct RegexList SubscribedLists; ///< List of regexes to match subscribed mailing lists

#endif /* MUTT_EMAIL_GLOBALS_H */

0 comments on commit eb70049

Please sign in to comment.