query.c recvattach.c recvcmd.c rfc1524.c rfc2047.c rfc2231.c rfc3676.c \
address.c safe_asprintf.c score.c send.c sendlib.c sidebar.c mutt_signal.c \
smtp.c sort.c state.c state.h status.c system.c thread.c thread.h url.c \
- version.c where.h mutt_tags.c
+ version.c where.h tags.c
nodist_neomutt_SOURCES = $(BUILT_SOURCES)
mutt_socket.h mx.h myvar.h nntp.h opcodes.h pager.h \
pgpewrap.c pop.h protos.h README.md README.SSL remailer.c remailer.h \
rfc1524.h rfc2047.h rfc2231.h rfc3676.h sidebar.h \
- sort.h txt2c.c txt2c.sh version.h mutt_tags.h
+ sort.h txt2c.c txt2c.sh version.h tags.h
EXTRA_SCRIPTS =
flags.o from.o group.o handler.o hdrline.o \
header.o help.o history.o hook.o init.o keymap.o main.o \
mbox.o mbyte.o menu.o mh.o muttlib.o mutt_address.o mutt_idna.o \
- mutt_socket.o mutt_tags.o mx.o \
+ mutt_socket.o tags.o mx.o \
newsrc.o nntp.o pager.o parameter.o parse.o pattern.o pop.o \
pop_auth.o pop_lib.o postpone.o query.o recvattach.o recvcmd.o \
rfc1524.o rfc2047.o rfc2231.o rfc3676.o address.o \
#include "mime.h"
#include "mutt_curses.h"
#include "mutt_idna.h"
-#include "mutt_tags.h"
#include "mx.h"
#include "ncrypt/ncrypt.h"
#include "options.h"
#include "protos.h"
#include "rfc2047.h"
#include "state.h"
+#include "tags.h"
#ifdef USE_NOTMUCH
#include "mutt_notmuch.h"
#endif
#include "mailbox.h"
#include "mutt_curses.h"
#include "mutt_menu.h"
-#include "mutt_tags.h"
#include "mx.h"
#include "ncrypt/ncrypt.h"
#include "opcodes.h"
#include "pattern.h"
#include "protos.h"
#include "sort.h"
+#include "tags.h"
#include "thread.h"
#ifdef HAVE_NCURSESW_NCURSES_H
#include <ncursesw/term.h>
WHERE struct Hash *Groups;
WHERE struct Hash *ReverseAliases;
-WHERE char *HiddenTags;
-WHERE struct Hash *TagTransforms;
WHERE struct Hash *TagFormats;
WHERE struct ListHead AutoViewList INITVAL(STAILQ_HEAD_INITIALIZER(AutoViewList));
#include "header.h"
#include "mbyte.h"
#include "mutt_regex.h"
-#include "mutt_tags.h"
#include "parameter.h"
#include "protos.h"
+#include "tags.h"
static unsigned int hcachever = 0x0;
#include "mbtable.h"
#include "mutt_curses.h"
#include "mutt_idna.h"
-#include "mutt_tags.h"
#include "ncrypt/ncrypt.h"
#include "options.h"
#include "protos.h"
#include "sort.h"
+#include "tags.h"
#include "thread.h"
#ifdef USE_NOTMUCH
#include "mutt_notmuch.h"
#include <stdbool.h>
#include <time.h>
#include "mutt/mutt.h"
-#include "mutt_tags.h"
+#include "tags.h"
/**
* struct Header - The header/envelope of an email
#include "mutt_account.h"
#include "mutt_curses.h"
#include "mutt_socket.h"
-#include "mutt_tags.h"
#include "mx.h"
#include "options.h"
#include "pattern.h"
#include "protos.h"
#include "sort.h"
+#include "tags.h"
#include "url.h"
#ifdef USE_HCACHE
#include "hcache/hcache.h"
#include "mutt_account.h"
#include "mutt_curses.h"
#include "mutt_socket.h"
-#include "mutt_tags.h"
#include "mx.h"
#include "options.h"
#include "protos.h"
+#include "tags.h"
#ifdef USE_HCACHE
#include "hcache/hcache.h"
#endif
#include "protos.h"
#include "sort.h"
#include "conn/conn.h"
+#include "tags.h"
#ifdef USE_LUA
#include "mutt_lua.h"
#endif
#include "options.h"
#include "pattern.h"
#include "protos.h"
+#include "tags.h"
#ifdef USE_SIDEBAR
#include "sidebar.h"
#endif
#include "header.h"
#include "mailbox.h"
#include "mutt_curses.h"
-#include "mutt_tags.h"
#include "mx.h"
#include "protos.h"
+#include "tags.h"
#include "thread.h"
#include "url.h"
#include "mime.h"
#include "mutt_curses.h"
#include "mutt_regex.h"
-#include "mutt_tags.h"
+#include "tags.h"
#include "mx.h"
#include "ncrypt/ncrypt.h"
#ifdef USE_IMAP
#include "imap/imap.h"
#endif
-#include "mutt_tags.h"
#include "mx.h"
+#include "tags.h"
#ifdef USE_NOTMUCH
#include "mutt_notmuch.h"
#endif
mutt_notmuch.c
mutt_signal.c
mutt_socket.c
-mutt_tags.c
mx.c
ncrypt/crypt.c
ncrypt/cryptglue.c
state.c
status.c
system.c
+tags.c
thread.c
txt2c.c
url.c
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#include <stddef.h>
-
#include "config.h"
+#include <stddef.h>
#include "mutt/hash.h"
#include "mutt/queue.h"
#include "mutt/string2.h"
+#include "tags.h"
#include "globals.h"
-#include "mutt_tags.h"
+
+char *HiddenTags;
+struct Hash *TagTransforms;
/**
* driver_tags_free - Free tags from a header
#ifndef _MUTT_TAG_H
#define _MUTT_TAG_H
-#include <stdbool.h>
#include <stddef.h>
+#include <stdbool.h>
#include "mutt/queue.h"
+extern char *HiddenTags;
+extern struct Hash *TagTransforms;
+
/**
* struct TagNode - LinkedList Tag Element
*