From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/5458 Path: news.gmane.org!not-for-mail From: Baloff Newsgroups: gmane.emacs.gnus.user Subject: Re: function definition void Date: 27 Jul 2005 07:26:27 +1000 Organization: iPrimus Customer - reports relating to abuse should be sent to abuse@iprimus.com.au Message-ID: <87u0ih2r98.fsf@wash.edu> References: <87ek9lhdjf.fsf@wash.edu> <7qu8xzthbq2.fsf@1078-ARIBA-004.central.purdue.lcl> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138671173 27480 80.91.229.2 (31 Jan 2006 01:32:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:32:53 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:35:19 2006 Original-Sender: sam@debian Original-Newsgroups: gnu.emacs.gnus User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.4 X-Original-NNTP-Posting-Host: 210.50.16.3 X-Original-NNTP-Posting-Host: 127.0.0.1 Original-NNTP-Posting-Host: 203.134.67.67 Original-X-Trace: 1122412049 un-2park-reader-02.sydney.pipenetworks.com.au 31987 203.134.67.67:2618 Original-X-Complaints-To: Abuse, including message IDs to abuse@pipenetworks.com Original-Path: quimby.gnus.org!newsfeed.gazeta.pl!newsfeed.pionier.net.pl!news.moat.net!nntp.waia.asn.au!202.72.130.18.MISMATCH!quokka.wn.com.au!token.pipenetworks.com!218.100.2.58.MISMATCH!not-for-mail Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:5600 Original-Lines: 48 X-Gnus-Article-Number: 5600 Tue Jan 17 17:35:19 2006 Xref: news.gmane.org gmane.emacs.gnus.user:5458 Archived-At: Jason Dufair writes: > Baloff writes: > > > I copied and yanked this in my ./gnus.el file but it is giving article > > function definition void: or something like that in the minibuffer > > when I load-file ./gnus.el > > > > (article (horizontal 1.0 > > (vertical 0.5 > > (group 1.0) > > (gnus-carpal 4)) > > (vertical 1.0 > > (summary 0.25 point) > > (summary-carpal 4) > > (article 1.0)))) > > I got it from > > http://www.gnus.org/manual/gnus_272.html#SEC272 > > what am I doing wrong? > > > > thanks > > You'll need an actual function call: > > (gnus-add-configuration > '(article (horizontal 1.0 > (vertical 0.5 > (group 1.0) > (gnus-carpal 4)) > (vertical 1.0 > (summary 0.25 point) > (summary-carpal 4) > (article 1.0))))) > > > gnus-add-configuration is the function call and the rest is the > argument to that function. The above should do the trick for you > (assuming the layout actually works - I didn't try it) > > -- > Jason Dufair - jase@dufair.org > http://www.dufair.org/ > "Being in politics is like being a football coach. > You have to be smart enough to understand the game, > and dumb enough to think it's important." > -- Eugene McCarthy thanks