From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/53822 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.gnus.general Subject: Re: Another posting-styles question Date: Tue, 26 Aug 2003 00:45:56 +0200 Organization: http://purl.org/harder/ Sender: ding-owner@lists.math.uh.edu Message-ID: References: <87u1873rcm.fsf@pooh.honeypot.net> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1061851772 31854 80.91.224.253 (25 Aug 2003 22:49:32 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 25 Aug 2003 22:49:32 +0000 (UTC) Original-X-From: ding-owner+M2362@lists.math.uh.edu Tue Aug 26 00:49:30 2003 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 19rQ9S-00013x-00 for ; Tue, 26 Aug 2003 00:49:30 +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 19rQ8x-0007E4-00; Mon, 25 Aug 2003 17:48:59 -0500 Original-Received: from sclp3.sclp.com ([64.157.176.121]) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 19rQ8t-0007Dz-00 for ding@lists.math.uh.edu; Mon, 25 Aug 2003 17:48:55 -0500 Original-Received: (qmail 5442 invoked by alias); 25 Aug 2003 22:48:54 -0000 Original-Received: (qmail 5430 invoked from network); 25 Aug 2003 22:48:54 -0000 Original-Received: from quimby.gnus.org (80.91.224.244) by sclp3.sclp.com with SMTP; 25 Aug 2003 22:48:54 -0000 Original-Received: from news by quimby.gnus.org with local (Exim 3.12 #1 (Debian)) id 19rQEa-00054p-00 for ; Tue, 26 Aug 2003 00:54:48 +0200 Original-To: ding@gnus.org Original-Path: localhost.localdomain!nobody Original-Newsgroups: gnus.ding Original-Lines: 27 Original-NNTP-Posting-Host: 0xc3f95288.esnxr1.ras.tele.dk Original-X-Trace: quimby.gnus.org 1061852088 19518 195.249.82.136 (25 Aug 2003 22:54:48 GMT) Original-X-Complaints-To: usenet@quimby.gnus.org Original-NNTP-Posting-Date: 25 Aug 2003 22:54:48 GMT X-Face: ^RrvqCr7c,P$zTR:QED"@h9+BTm-"fjZJJ-3=OU7.)i/K]<.J88}s>'Z_$r; writes: > I want to define a set of posting-style "macros" along the lines of: > > (setq > posting-style-generic '(signature-file "~/.signature") > posting-style-technical '(signature-file "~/.signature-technical")) > > and then use them in my Group Parameters like: > > ((posting-style > (posting-style-technical) > (Organization "The Strauser Group"))) > > but I can't seem to make the syntax work. The sticking point is when I want > to make a "macro" with multiple entries. Could someone boot me in the right > direction? If you use `gnus-parameters' you can do something like: (add-to-list 'gnus-parameters `("some.group" (posting-style ,posting-style-technical (organization "The Strauser Group")))) For multiple entries you need to splice the list in with ,@ -- see .