Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* function definition void
@ 2005-07-26 14:01 Baloff
  2005-07-26 14:40 ` Jason Dufair
  0 siblings, 1 reply; 3+ messages in thread
From: Baloff @ 2005-07-26 14:01 UTC (permalink / raw)



Hello
while reading the manual

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


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: function definition void
  2005-07-26 14:01 function definition void Baloff
@ 2005-07-26 14:40 ` Jason Dufair
  2005-07-26 21:26   ` Baloff
  0 siblings, 1 reply; 3+ messages in thread
From: Jason Dufair @ 2005-07-26 14:40 UTC (permalink / raw)


Baloff <washdc@xxx> 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


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: function definition void
  2005-07-26 14:40 ` Jason Dufair
@ 2005-07-26 21:26   ` Baloff
  0 siblings, 0 replies; 3+ messages in thread
From: Baloff @ 2005-07-26 21:26 UTC (permalink / raw)


Jason Dufair <jase@dufair.org> writes:

> Baloff <washdc@xxx> 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


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-07-26 21:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-07-26 14:01 function definition void Baloff
2005-07-26 14:40 ` Jason Dufair
2005-07-26 21:26   ` Baloff

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).