From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/15458 Path: main.gmane.org!not-for-mail From: SL Baur Newsgroups: gmane.emacs.gnus.general Subject: Re: .21 barfs on an unknown face Date: 28 Jun 1998 18:22:56 -0700 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.108) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035154485 22185 80.91.224.250 (20 Oct 2002 22:54:45 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:54:45 +0000 (UTC) Return-Path: Original-Received: from gwyn.tux.org (gwyn.tux.org [207.96.122.8]) by altair.xemacs.org (8.9.0/8.9.0) with ESMTP id SAA24691 for ; Sun, 28 Jun 1998 18:24:12 -0700 Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by gwyn.tux.org (8.8.8/8.8.8) with ESMTP id VAA06762 for ; Sun, 28 Jun 1998 21:22:02 -0400 Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id TAT27808; Sun, 28 Jun 1998 19:55:42 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 28 Jun 1998 20:21:37 -0500 (CDT) Original-Received: from claymore.vcinet.com (claymore.vcinet.com [208.205.12.23]) by sina.hpc.uh.edu (8.7.3/8.7.3) with SMTP id UAA28591 for ; Sun, 28 Jun 1998 20:21:24 -0500 (CDT) Original-Received: (qmail 17740 invoked by uid 504); 29 Jun 1998 01:21:05 -0000 Original-Received: (qmail 17737 invoked from network); 29 Jun 1998 01:21:04 -0000 Original-Received: from vmailer.xemacs.org (vmailer@206.190.83.63) by claymore.vcinet.com with SMTP; 29 Jun 1998 01:21:03 -0000 Original-Received: from altair.xemacs.org (vmailer.xemacs.org 206.190.83.63) by vmailer.xemacs.org (VMailer) via SMTP id 309D81C995; Sun, 28 Jun 1998 18:22:56 -0700 (PDT) Mail-Copies-To: never Original-To: ding@gnus.org X-Face: (:YAD@JS'&Kz'M}n7eX7gEvPR6U1mJ-kt;asEc2qAv;h{Yw7ckz<7+X_SYeTNAaPui:e~x$ ,A=gkt*>UPL/}\a/#C~v2%ETiAY_sx;xve0yL??JWTtX_-NUzXyP38UdW#cmN1\4(X!c3m#%IbtB-3 Z-!xpZi!`E.s{(;aP=b11"!3wQu]1j@^V|;n=B|{l writes: > First run of .21: It doesn't even display *Group* properly. Here's a patch to fix this bomb. Tested with XEmacs/Mule 21.0. All the forward quotes, backward quotes, and commas make my head spin, but I think this is the correct way to do it. 1998-06-28 SL Baur * gnus-spec.el (gnus-face-face-function): Fix misquoting. --- gnus-spec.el~ Sun Jun 28 00:56:46 1998 +++ gnus-spec.el Sun Jun 28 18:16:10 1998 @@ -239,8 +239,8 @@ (defun gnus-face-face-function (form type) `(gnus-add-text-properties (point) (progn ,@form (point)) - '(gnus-face t - face ',(symbol-value (intern (format "gnus-face-%d" type)))))) + (list 'gnus-face t + 'face ',(symbol-value (intern (format "gnus-face-%d" type)))))) (defun gnus-tilde-max-form (el max-width) "Return a form that limits EL to MAX-WIDTH."