Gnus development mailing list
 help / color / mirror / Atom feed
* gnus-setup-message-winconf-name
@ 2011-08-25 12:15 Leo Butler
  2011-08-25 16:44 ` gnus-setup-message-winconf-name Dave Abrahams
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Leo Butler @ 2011-08-25 12:15 UTC (permalink / raw)
  To: ding


Hi, I am a new gnus user (after ~20 years using pine). Sometimes, when I
am in a group buffer and I hit M-g to update the listings, I get the
following message:

gnus-configure-windows: No such setting in `gnus-buffer-configuration': gnus-setup-message-winconf-name

I am using gnus built from the git repo (within the last week) due to
issues with the version of gnus in debian testing and my employer's
exchange email server.

Leo
-- 




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

* Re: gnus-setup-message-winconf-name
  2011-08-25 12:15 gnus-setup-message-winconf-name Leo Butler
@ 2011-08-25 16:44 ` Dave Abrahams
  2011-08-25 20:07 ` gnus-setup-message-winconf-name John Wiegley
  2011-08-26  0:09 ` gnus-setup-message-winconf-name Katsumi Yamaoka
  2 siblings, 0 replies; 10+ messages in thread
From: Dave Abrahams @ 2011-08-25 16:44 UTC (permalink / raw)
  To: ding


on Thu Aug 25 2011, Leo Butler <l.butler-AT-cmich.edu> wrote:

> Hi, I am a new gnus user (after ~20 years using pine). Sometimes, when I
> am in a group buffer and I hit M-g to update the listings, I get the
> following message:
>
> gnus-configure-windows: No such setting in
> gnus-buffer-configuration': gnus-setup-message-winconf-name
>
> I am using gnus built from the git repo (within the last week) due to
> issues with the version of gnus in debian testing and my employer's
> exchange email server.

Known problem, FWIW:

http://debbugs.gnu.org/db/91/9122.html
http://debbugs.gnu.org/db/91/9107.html

>
> Leo

-- 
Dave Abrahams
BoostPro Computing
http://www.boostpro.com




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

* Re: gnus-setup-message-winconf-name
  2011-08-25 12:15 gnus-setup-message-winconf-name Leo Butler
  2011-08-25 16:44 ` gnus-setup-message-winconf-name Dave Abrahams
@ 2011-08-25 20:07 ` John Wiegley
  2011-08-26  0:09 ` gnus-setup-message-winconf-name Katsumi Yamaoka
  2 siblings, 0 replies; 10+ messages in thread
From: John Wiegley @ 2011-08-25 20:07 UTC (permalink / raw)
  To: ding

>>>>> Leo Butler <l.butler@cmich.edu> writes:

> gnus-configure-windows: No such setting in `gnus-buffer-configuration':
> gnus-setup-message-winconf-name

> I am using gnus built from the git repo (within the last week) due to issues
> with the version of gnus in debian testing and my employer's exchange email
> server.

I get this same error at odd times, and haven't been able to reproduce it
faithfully enough to track it down yet.

John




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

* Re: gnus-setup-message-winconf-name
  2011-08-25 12:15 gnus-setup-message-winconf-name Leo Butler
  2011-08-25 16:44 ` gnus-setup-message-winconf-name Dave Abrahams
  2011-08-25 20:07 ` gnus-setup-message-winconf-name John Wiegley
@ 2011-08-26  0:09 ` Katsumi Yamaoka
  2011-08-26  4:25   ` gnus-setup-message-winconf-name Katsumi Yamaoka
  2 siblings, 1 reply; 10+ messages in thread
From: Katsumi Yamaoka @ 2011-08-26  0:09 UTC (permalink / raw)
  To: ding

Leo Butler wrote:
> gnus-configure-windows: No such setting in
> gnus-buffer-configuration': gnus-setup-message-winconf-name

I've never seen such an error though, I suspect it might be due
to a mote having been accidentally added to `gnus-setup-message'.
Here's an extract:

(defmacro gnus-setup-message (config &rest forms)
  (let ((winconf-name (make-symbol "gnus-setup-message-winconf-name")))
    `(let ((,winconf-name gnus-current-window-configuration))
         (gnus-inews-add-send-actions ,winconf ,buffer ,article ,config
                                      ,yanked ',winconf-name)
                                              ^
`winconf-name' is quoted by this extra apostrophe, so it will be
expanded into the symbol `gnus-setup-message-winconf-name', not
the `gnus-current-window-configuration' variable.  I'm not quite
sure to remove it is the solution, though.



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

* Re: gnus-setup-message-winconf-name
  2011-08-26  0:09 ` gnus-setup-message-winconf-name Katsumi Yamaoka
@ 2011-08-26  4:25   ` Katsumi Yamaoka
  2011-08-26  4:47     ` gnus-setup-message-winconf-name John Wiegley
  2011-08-28 18:52     ` gnus-setup-message-winconf-name Leo Butler
  0 siblings, 2 replies; 10+ messages in thread
From: Katsumi Yamaoka @ 2011-08-26  4:25 UTC (permalink / raw)
  To: ding

Katsumi Yamaoka wrote:
> Leo Butler wrote:
>> gnus-configure-windows: No such setting in
>> gnus-buffer-configuration': gnus-setup-message-winconf-name

> I've never seen such an error though, I suspect it might be due
> to a mote having been accidentally added to `gnus-setup-message'.
> Here's an extract:

> (defmacro gnus-setup-message (config &rest forms)
>   (let ((winconf-name (make-symbol "gnus-setup-message-winconf-name")))
>     `(let ((,winconf-name gnus-current-window-configuration))
>          (gnus-inews-add-send-actions ,winconf ,buffer ,article ,config
>                                       ,yanked ',winconf-name)
>                                               ^
> `winconf-name' is quoted by this extra apostrophe, so it will be
> expanded into the symbol `gnus-setup-message-winconf-name', not
> the `gnus-current-window-configuration' variable.  I'm not quite
> sure to remove it is the solution, though.

Fixed in git and bzr.  Now I'm sure that is the right solution.
The reason I've never faced such an error is that I don't use
the functions that try to configure the window layout for the
setting `gnus-setup-message-winconf-name'.  Those functions are
`gnus-group-make-nnir-group', `gnus-pick-setup-message', and
`gnus-summary-rescan-group'.



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

* Re: gnus-setup-message-winconf-name
  2011-08-26  4:25   ` gnus-setup-message-winconf-name Katsumi Yamaoka
@ 2011-08-26  4:47     ` John Wiegley
  2011-08-28 18:52     ` gnus-setup-message-winconf-name Leo Butler
  1 sibling, 0 replies; 10+ messages in thread
From: John Wiegley @ 2011-08-26  4:47 UTC (permalink / raw)
  To: ding

>>>>> Katsumi Yamaoka <yamaoka@jpl.org> writes:

> Fixed in git and bzr.  Now I'm sure that is the right solution.  The reason
> I've never faced such an error is that I don't use the functions that try to
> configure the window layout for the setting
> `gnus-setup-message-winconf-name'.  Those functions are
> `gnus-group-make-nnir-group', `gnus-pick-setup-message', and
> `gnus-summary-rescan-group'.

Thank you!  Pulling now...

John




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

* Re: gnus-setup-message-winconf-name
  2011-08-26  4:25   ` gnus-setup-message-winconf-name Katsumi Yamaoka
  2011-08-26  4:47     ` gnus-setup-message-winconf-name John Wiegley
@ 2011-08-28 18:52     ` Leo Butler
  2011-08-29 20:35       ` gnus-setup-message-winconf-name Leo Butler
  1 sibling, 1 reply; 10+ messages in thread
From: Leo Butler @ 2011-08-28 18:52 UTC (permalink / raw)
  To: ding

Katsumi Yamaoka <yamaoka@jpl.org> writes:

> Katsumi Yamaoka wrote:
>> Leo Butler wrote:
>>> gnus-configure-windows: No such setting in
>>> gnus-buffer-configuration': gnus-setup-message-winconf-name
>
>> I've never seen such an error though, I suspect it might be due
>> to a mote having been accidentally added to `gnus-setup-message'.
>> Here's an extract:
>
>> (defmacro gnus-setup-message (config &rest forms)
>>   (let ((winconf-name (make-symbol "gnus-setup-message-winconf-name")))
>>     `(let ((,winconf-name gnus-current-window-configuration))
>>          (gnus-inews-add-send-actions ,winconf ,buffer ,article ,config
>>                                       ,yanked ',winconf-name)
>>                                               ^
>> `winconf-name' is quoted by this extra apostrophe, so it will be
>> expanded into the symbol `gnus-setup-message-winconf-name', not
>> the `gnus-current-window-configuration' variable.  I'm not quite
>> sure to remove it is the solution, though.
>
> Fixed in git and bzr.  Now I'm sure that is the right solution.
> The reason I've never faced such an error is that I don't use
> the functions that try to configure the window layout for the
> setting `gnus-setup-message-winconf-name'.  Those functions are
> `gnus-group-make-nnir-group', `gnus-pick-setup-message', and
> `gnus-summary-rescan-group'.

It appears that that did fix the problem. Thanks!




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

* Re: gnus-setup-message-winconf-name
  2011-08-28 18:52     ` gnus-setup-message-winconf-name Leo Butler
@ 2011-08-29 20:35       ` Leo Butler
  2011-08-29 23:27         ` gnus-setup-message-winconf-name Katsumi Yamaoka
  0 siblings, 1 reply; 10+ messages in thread
From: Leo Butler @ 2011-08-29 20:35 UTC (permalink / raw)
  To: ding

Leo Butler <l.butler@cmich.edu> writes:

> Katsumi Yamaoka <yamaoka@jpl.org> writes:
>
>> Katsumi Yamaoka wrote:
>>> Leo Butler wrote:
>>>> gnus-configure-windows: No such setting in
>>>> gnus-buffer-configuration': gnus-setup-message-winconf-name
>>
>>> I've never seen such an error though, I suspect it might be due
>>> to a mote having been accidentally added to `gnus-setup-message'.
>>> Here's an extract:
>>
>>> (defmacro gnus-setup-message (config &rest forms)
>>>   (let ((winconf-name (make-symbol "gnus-setup-message-winconf-name")))
>>>     `(let ((,winconf-name gnus-current-window-configuration))
>>>          (gnus-inews-add-send-actions ,winconf ,buffer ,article ,config
>>>                                       ,yanked ',winconf-name)
>>>                                               ^
>>> `winconf-name' is quoted by this extra apostrophe, so it will be
>>> expanded into the symbol `gnus-setup-message-winconf-name', not
>>> the `gnus-current-window-configuration' variable.  I'm not quite
>>> sure to remove it is the solution, though.
>>
>> Fixed in git and bzr.  Now I'm sure that is the right solution.
>> The reason I've never faced such an error is that I don't use
>> the functions that try to configure the window layout for the
>> setting `gnus-setup-message-winconf-name'.  Those functions are
>> `gnus-group-make-nnir-group', `gnus-pick-setup-message', and
>> `gnus-summary-rescan-group'.
>
> It appears that that did fix the problem. Thanks!

Well, I spoke too soon. That change did reduce the number of
times I see this error, but it has occurred since I picked up the fixes
from the git repo. Any additional ideas? 




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

* Re: gnus-setup-message-winconf-name
  2011-08-29 20:35       ` gnus-setup-message-winconf-name Leo Butler
@ 2011-08-29 23:27         ` Katsumi Yamaoka
  2011-08-30 20:20           ` gnus-setup-message-winconf-name Leo Butler
  0 siblings, 1 reply; 10+ messages in thread
From: Katsumi Yamaoka @ 2011-08-29 23:27 UTC (permalink / raw)
  To: ding

Leo Butler wrote:
>> Katsumi Yamaoka <yamaoka@jpl.org> writes:
[...]
>>>> (defmacro gnus-setup-message (config &rest forms)
>>>>   (let ((winconf-name (make-symbol "gnus-setup-message-winconf-name")))
>>>>     `(let ((,winconf-name gnus-current-window-configuration))
>>>>          (gnus-inews-add-send-actions ,winconf ,buffer ,article ,config
>>>>                                       ,yanked ',winconf-name)
>>>>                                               ^
>>>> `winconf-name' is quoted by this extra apostrophe, so it will be
>>>> expanded into the symbol `gnus-setup-message-winconf-name', not
>>>> the `gnus-current-window-configuration' variable.  I'm not quite
>>>> sure to remove it is the solution, though.
>>>
>>> Fixed in git and bzr.  Now I'm sure that is the right solution.
[...]
>> It appears that that did fix the problem. Thanks!

> Well, I spoke too soon. That change did reduce the number of
> times I see this error, but it has occurred since I picked up the fixes
> from the git repo. Any additional ideas?

All the *.el files that use the `gnus-setup-message' macro have
to be re-compiled (after updating gnus-msg.el).  The easiest way
is to rebuild and install Gnus.  Have you ever done?



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

* Re: gnus-setup-message-winconf-name
  2011-08-29 23:27         ` gnus-setup-message-winconf-name Katsumi Yamaoka
@ 2011-08-30 20:20           ` Leo Butler
  0 siblings, 0 replies; 10+ messages in thread
From: Leo Butler @ 2011-08-30 20:20 UTC (permalink / raw)
  To: ding

Katsumi Yamaoka <yamaoka@jpl.org> writes:

> All the *.el files that use the `gnus-setup-message' macro have
> to be re-compiled (after updating gnus-msg.el).  The easiest way
> is to rebuild and install Gnus.  Have you ever done?

I did run ./configure && make after the update.
I just when in and did make clean && make, so I will see if that has any
effect. Thanks for your help.




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

end of thread, other threads:[~2011-08-30 20:20 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-08-25 12:15 gnus-setup-message-winconf-name Leo Butler
2011-08-25 16:44 ` gnus-setup-message-winconf-name Dave Abrahams
2011-08-25 20:07 ` gnus-setup-message-winconf-name John Wiegley
2011-08-26  0:09 ` gnus-setup-message-winconf-name Katsumi Yamaoka
2011-08-26  4:25   ` gnus-setup-message-winconf-name Katsumi Yamaoka
2011-08-26  4:47     ` gnus-setup-message-winconf-name John Wiegley
2011-08-28 18:52     ` gnus-setup-message-winconf-name Leo Butler
2011-08-29 20:35       ` gnus-setup-message-winconf-name Leo Butler
2011-08-29 23:27         ` gnus-setup-message-winconf-name Katsumi Yamaoka
2011-08-30 20:20           ` gnus-setup-message-winconf-name Leo Butler

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).