From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/20313 Path: main.gmane.org!not-for-mail From: Kai.Grossjohann@CS.Uni-Dortmund.DE Newsgroups: gmane.emacs.gnus.general Subject: Re: using multiple Summary buffer formats Date: 15 Jan 1999 12:13:36 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: References: <199901112351.SAA18522@math.gatech.edu> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 X-Trace: main.gmane.org 1035158625 17068 80.91.224.250 (21 Oct 2002 00:03:45 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 00:03:45 +0000 (UTC) Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id GAA09194 for ; Fri, 15 Jan 1999 06:14:38 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.1/8.9.1) with ESMTP id FAB25354; Fri, 15 Jan 1999 05:14:06 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 15 Jan 1999 05:14:13 -0600 (CST) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id FAA26018 for ; Fri, 15 Jan 1999 05:14:04 -0600 (CST) Original-Received: from waldorf.cs.uni-dortmund.de (waldorf.cs.uni-dortmund.de [129.217.4.42]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id GAA09182 for ; Fri, 15 Jan 1999 06:13:56 -0500 (EST) Original-Received: from ramses.informatik.uni-dortmund.de (ramses.cs.uni-dortmund.de [129.217.20.180]) by waldorf.cs.uni-dortmund.de with SMTP id MAA22335 for ; Fri, 15 Jan 1999 12:13:38 +0100 (MET) Original-Received: (grossjoh@localhost) by ramses.informatik.uni-dortmund.de id MAA28154; Fri, 15 Jan 1999 12:13:37 +0100 Original-To: ding@gnus.org In-Reply-To: Lee Willis's message of "15 Jan 1999 10:35:38 +0000" Original-Lines: 27 User-Agent: Gnus/5.070069 (Pterodactyl Gnus v0.69) Emacs/20.3 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:20313 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:20313 Lee Willis writes: > in one of my per person groups. Is there an easy way to do this or would > it require writing a hook, which I think I can probably do with some > trial and error if that's the way to go, I was just wondering if there > was an easier way, The following creates a different format for the nnml:mail.misc and nnml:outgoing groups. I'm sure you see how to do this for other groups. Untested! (defun my-frob-gnus-summary-line-format () (make-local-variable 'gnus-summary-line-format) (if (string-match "nnml:mail.misc\\|nnml:outgoing" gnus-newsgroup-name) (setq gnus-summary-line-format "..value with %f..") (setq gnus-summary-line-format "..value with %n.."))) (add-hook 'gnus-summary-generate-hook 'my-frob-gnus-summary-line-format) Maybe you need a different gnus-summary-*-hook variable. kai -- Abort this operation? [Abort] [Cancel]