From f8869decefaf3119b01dc408e057812d71825858 Mon Sep 17 00:00:00 2001 From: yamaoka Date: Tue, 30 Nov 1999 06:17:11 +0000 Subject: [PATCH] (gnus-emphasis-alist): Use `car' and `cdr' instead of `cadr'. --- lisp/gnus-art.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el index c0f2d72..20a2ea8 100644 --- a/lisp/gnus-art.el +++ b/lisp/gnus-art.el @@ -245,7 +245,7 @@ asynchronously. The compressed face will be piped to this command." ,@(mapcar (lambda (spec) (list - (format format (car spec) (cadr spec)) + (format format (car spec) (car (cdr spec))) 2 3 (intern (format "gnus-emphasis-%s" (nth 2 spec))))) types))) "*Alist that says how to fontify certain phrases. -- 1.7.10.4