From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/57027 Path: main.gmane.org!not-for-mail From: Michael Schierl Newsgroups: gmane.emacs.gnus.general Subject: Re: gnus on winxp Date: Thu, 15 Apr 2004 10:26:09 +0200 Sender: ding-owner@lists.math.uh.edu Message-ID: References: Reply-To: schierlm@gmx.de NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain X-Trace: sea.gmane.org 1082017778 28626 80.91.224.253 (15 Apr 2004 08:29:38 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 15 Apr 2004 08:29:38 +0000 (UTC) Original-X-From: ding-owner+M5567@lists.math.uh.edu Thu Apr 15 10:29:28 2004 Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1BE2FT-0004vX-00 for ; Thu, 15 Apr 2004 10:29:27 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1BE2Dy-00083s-00; Thu, 15 Apr 2004 03:27:54 -0500 Original-Received: from util2.math.uh.edu ([129.7.128.23]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1BE2Dp-00083k-00 for ding@lists.math.uh.edu; Thu, 15 Apr 2004 03:27:45 -0500 Original-Received: from justine.libertine.org ([66.139.78.221] ident=postfix) by util2.math.uh.edu with esmtp (Exim 4.30) id 1BE2Do-0005r4-TP for ding@lists.math.uh.edu; Thu, 15 Apr 2004 03:27:44 -0500 Original-Received: from main.gmane.org (main.gmane.org [80.91.224.249]) by justine.libertine.org (Postfix) with ESMTP id 402EF3A0059 for ; Thu, 15 Apr 2004 03:27:43 -0500 (CDT) Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1BE2Dj-0004jj-00 for ; Thu, 15 Apr 2004 10:27:42 +0200 Original-Received: from d55-84.dsl.easysurfnet.de ([83.121.55.84]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 15 Apr 2004 10:27:39 +0200 Original-Received: from schierlm-usenet by d55-84.dsl.easysurfnet.de with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 15 Apr 2004 10:27:39 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Lines: 51 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: d55-84.dsl.easysurfnet.de User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3.50 (windows-nt) Cancel-Lock: sha1:O36EnPxzG5dAw1PCuX/so5K3NkU= Precedence: bulk Xref: main.gmane.org gmane.emacs.gnus.general:57027 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:57027 Frank Schmitt writes: > You can fix the X-Face problem by installing the appropriate tools from > gnuwin32.sourceforge.net (I think they are in compface and netpbm) and > placing the following in .emacs (it replaces the call to icontopbm which > I couldn't find with xbmtopbm): icontopbm is in netpbm, but hereit complains about invalid input file -- premature EOF > (eval-after-load 'compface > (defun uncompface (face) > "Convert FACE to pbm. Modified by Frank Schmitt" > (with-temp-buffer > (insert face) > (and (eq 0 (apply 'call-process-region (point-min) (point-max) > "uncompface" > 'delete '(t nil) nil "-X" nil)) > (progn > (goto-char (point-min)) > (eq 0 (call-process-region (point-min) (point-max) > "xbmtopbm" > 'delete '(t nil))) > ) > (buffer-string))))))) After removing the last two closing parens and adding a quote at the beginning of the second line, i.e. (eval-after-load 'compface '(defun uncompface (face) "Convert FACE to pbm. Modified by Frank Schmitt" (with-temp-buffer (insert face) (and (eq 0 (apply 'call-process-region (point-min) (point-max) "uncompface" 'delete '(t nil) nil "-X" nil)) (progn (goto-char (point-min)) (eq 0 (call-process-region (point-min) (point-max) "xbmtopbm" 'delete '(t nil))) ) (buffer-string))))) it works fine. Thanks. Michael