From: Tollef Fog Heen Date: Fri, 8 Aug 2008 07:38:42 +0000 (+0200) Subject: Use cons and list rather than . and quote-notation to construct the alist to avoid... X-Git-Tag: 0.1~3 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cde591575c1c9c419823b598b48d751253c6caa3;p=eweouz Use cons and list rather than . and quote-notation to construct the alist to avoid quoting problems --- diff --git a/lisp/eweouz.el b/lisp/eweouz.el index 6c4a838..451636d 100644 --- a/lisp/eweouz.el +++ b/lisp/eweouz.el @@ -147,8 +147,8 @@ (save-excursion (set-buffer gnus-article-buffer) (let* ((from (mail-header-parse-address (gnus-fetch-field "From"))) - (record '((email . (car from)) - (name . (cdr from))))) + (record (list (cons 'email (car from)) + (cons 'name (cdr from))))) (eweouz-do-add record)))) (defun eweouz-do-add (record)