From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/14685 Path: main.gmane.org!not-for-mail From: Newsgroups: gmane.emacs.gnus.general Subject: hand Compiling gnus-user-format-function-% functions Date: 19 Mar 1998 16:07:01 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: Reply-To: jari.aalto@ntc.nokia.com NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 (generated by tm-edit 7.106) Content-Type: text/plain; charset=US-ASCII X-Trace: main.gmane.org 1035153838 17649 80.91.224.250 (20 Oct 2002 22:43:58 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 22:43:58 +0000 (UTC) Return-Path: Original-Received: from xemacs.org (xemacs.cs.uiuc.edu [128.174.252.16]) by altair.xemacs.org (8.8.8/8.8.8) with ESMTP id GAA25549 for ; Thu, 19 Mar 1998 06:08:26 -0800 Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by xemacs.org (8.8.5/8.8.5) with ESMTP id IAA22983 for ; Thu, 19 Mar 1998 08:09:04 -0600 (CST) 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 IAN31416; Thu, 19 Mar 1998 08:44:10 -0600 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 19 Mar 1998 08:08:15 -0600 (CST) 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 IAA26092 for ; Thu, 19 Mar 1998 08:08:07 -0600 (CST) Original-Received: (qmail 19548 invoked by uid 504); 19 Mar 1998 14:07:55 -0000 Original-Received: (qmail 19545 invoked from network); 19 Mar 1998 14:07:55 -0000 Original-Received: from axl01it.ntc.nokia.com (131.228.118.232) by claymore.vcinet.com with SMTP; 19 Mar 1998 14:07:54 -0000 Original-Received: from zeus.tele.nokia.fi (zeus.tele.nokia.fi [131.228.134.50]) by axl01it.ntc.nokia.com (8.8.5/8.6.9) with SMTP id QAA19615 for ; Thu, 19 Mar 1998 16:07:07 +0200 (EET) Original-Received: from tre.tele.nokia.fi (styx.ntc.nokia.com [131.228.169.57]) by zeus.tele.nokia.fi (8.6.4/8.6.4) with ESMTP id QAA13266 for ; Thu, 19 Mar 1998 16:10:45 +0200 Original-Received: by tre.tele.nokia.fi (1.39.111.2/16.2) id AA237806422; Thu, 19 Mar 1998 16:07:02 +0200 Original-To: Ding mailing list X-Info: Quassia Gnus v0.37 Original-Lines: 25 X-Mailer: Quassia Gnus v0.37/Emacs 19.34 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:14685 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:14685 In the manual it says that the user function (%u) are not compiled, so I have to hand compile them. I attach the functions to Gnus like this (so that the [gnus..]-d can be aliased again if needed.) (defalias 'gnus-user-format-function-d 'my-gnus-summary-line-date) Now, I assume that doing this won't do what I expect: (byte-compile 'gnus-user-format-function-d) but this will: (byte-compile 'my-gnus-summary-line-date) Would someone confirm? Do I have to byte compile both? And lastly when I issue: (gnus-compile) everything is at peak level; right? jari