summaryrefslogtreecommitdiffstats
path: root/init.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-03-25 19:46:47 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-03-25 19:46:47 +0000
commitc79acba09979eb337535fccf7f5b396d170f2500 (patch)
treec868126709bbaec68f5dd5c41248627bb370c1d6 /init.c
parent27a6ffef72dea842785e909c0274b9551b1dc6ce (diff)
Roland's sort_keys patch.
Diffstat (limited to 'init.c')
-rw-r--r--init.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/init.c b/init.c
index 6f4b03af..4e365e7c 100644
--- a/init.c
+++ b/init.c
@@ -1030,6 +1030,11 @@ static int parse_set (BUFFER *tmp, BUFFER *s, unsigned long data, BUFFER *err)
case DT_SORT_BROWSER:
map = SortBrowserMethods;
break;
+#ifdef _PGPPATH
+ case DT_SORT_KEYS:
+ map = SortKeyMethods;
+ break;
+#endif
default:
map = SortMethods;
break;
@@ -1432,6 +1437,11 @@ int mutt_var_value_complete (char *buffer, size_t len, int pos)
case DT_SORT_BROWSER:
map = SortBrowserMethods;
break;
+#ifdef _PGPPATH
+ case DT_SORT_KEYS:
+ map = SortKeyMethods;
+ break;
+#endif
default:
map = SortMethods;
break;