From d713eef7495daeb08d125a039e5bbd7f8c9b1b93 Mon Sep 17 00:00:00 2001 From: morioka Date: Fri, 13 Mar 1998 23:42:54 +0000 Subject: [PATCH] (mailcap-look-at-field): Change field-name to symbol. --- mailcap.el | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailcap.el b/mailcap.el index 7e976a4..32aa278 100644 --- a/mailcap.el +++ b/mailcap.el @@ -117,9 +117,9 @@ (goto-char (match-end 0)) (mailcap-look-at-mtext)))) (if value - (cons token value) + (cons (intern token) value) )) - (list token) + (list (intern token)) )))) -- 1.7.10.4