From 36191ab1e38f6e356bce33cec51b6d0c3d309cfa Mon Sep 17 00:00:00 2001 From: hmurata Date: Tue, 5 Sep 2006 13:34:37 +0000 Subject: [PATCH] (epg-configuration): Fixed the last change; collect configuration other than group and algorithm. --- ChangeLog | 5 +++++ epg-config.el | 4 +++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 0fd818b..2118027 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-09-05 Hiroya Murata + + * epg-config.el (epg-configuration): Fixed the last change; + collect configuration other than group and algorithm. + 2006-09-05 Daiki Ueno * epg-config.el (epg-debug): Moved from epg.el. diff --git a/epg-config.el b/epg-config.el index bc9bbf9..3151d5a 100644 --- a/epg-config.el +++ b/epg-config.el @@ -92,7 +92,9 @@ Note that the buffer name starts with a space." config)) (if epg-debug (message "Invalid %S algorithm configuration: %S" - type args))))))) + type args)))) + (t + (setq config (cons (cons type args) config)))))) (if groups (cons (cons 'groups groups) config) config))) -- 1.7.10.4