summaryrefslogtreecommitdiffstats
path: root/functions.h
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-01-13 01:53:03 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-01-13 01:53:03 +0000
commit822535edf4b160d9f023fd2026c824ef061f4ea5 (patch)
treed2bc1f73f47c95b140c4c0ea0be42b70f26880fe /functions.h
parenta983c11963da7df7c9e4a99e54084a2cf4a1b176 (diff)
A first take at adding a mixmaster front-end to mutt. Don't worry,
it's optional. ;-)
Diffstat (limited to 'functions.h')
-rw-r--r--functions.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/functions.h b/functions.h
index e2f3e4a8..e8162819 100644
--- a/functions.h
+++ b/functions.h
@@ -296,6 +296,10 @@ struct binding_t OpCompose[] = {
{ "pgp-menu", OP_COMPOSE_PGP_MENU, "p" },
#endif
+#ifdef MIXMASTER
+ { "mix", OP_COMPOSE_MIX, "M" },
+#endif
+
{ NULL, 0, NULL }
};
@@ -356,3 +360,16 @@ struct binding_t OpPgp[] = {
{ NULL, 0, NULL }
};
#endif /* _PGPPATH */
+
+
+#ifdef MIXMASTER
+struct binding_t OpMix[] = {
+ { "accept", OP_MIX_USE, M_ENTER_S },
+ { "append", OP_MIX_APPEND, "a" },
+ { "insert", OP_MIX_INSERT, "i" },
+ { "delete", OP_MIX_DELETE, "d" },
+ { "chain-prev", OP_MIX_CHAIN_PREV, "<left>" },
+ { "chain-next", OP_MIX_CHAIN_NEXT, "<right>" },
+ { NULL, 0, NULL }
+};
+#endif /* MIXMASTER */