Announcements and discussions for Gnus, the GNU Emacs Usenet newsreader
 help / color / mirror / Atom feed
* broken gnus-summary-refer-thread ? in gnus v5.13
@ 2012-07-03 13:24 Gijs Hillenius
  2012-07-03 13:54 ` Wolfgang Jenkner
  0 siblings, 1 reply; 5+ messages in thread
From: Gijs Hillenius @ 2012-07-03 13:24 UTC (permalink / raw)
  To: info-gnus-english

Hi

Emacs-snapshot (GNU Emacs 24.1.50.1, 2012-06-22) comes with Gnus
v5.13. I mark a few mail boxes with # and hit G G to do a search in
these boxes for 'foobar'.

Then, I find myself in a buffer called 

*Article nnir:((query . "foobar") (unique-id . "12345.fsf"))*

with a handful of results.

Then, I go put the point at the message that I want, and hit 'A T'
(gnus-summary-refer-thread). I expected to be transported to the
'original mailbox' so I could mark the message (with !). But it seems
nothing happens.

*Messages says:

Fetching headers for nnir:((query . "foobar") (unique-id . 54321.fsf"))...done

If I mark the message in the nnir buffer, the tick mark is lost when
leaving the nnir buffer.

What did I do wrong?

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

* Re: broken gnus-summary-refer-thread ? in gnus v5.13
  2012-07-03 13:24 broken gnus-summary-refer-thread ? in gnus v5.13 Gijs Hillenius
@ 2012-07-03 13:54 ` Wolfgang Jenkner
  2012-07-03 14:22   ` Gijs Hillenius
  0 siblings, 1 reply; 5+ messages in thread
From: Wolfgang Jenkner @ 2012-07-03 13:54 UTC (permalink / raw)
  To: Gijs Hillenius; +Cc: info-gnus-english

On Tue, Jul 03 2012, Gijs Hillenius wrote:

> Emacs-snapshot (GNU Emacs 24.1.50.1, 2012-06-22) comes with Gnus
> v5.13. I mark a few mail boxes with # and hit G G to do a search in
> these boxes for 'foobar'.
>
> Then, I find myself in a buffer called 
>
> *Article nnir:((query . "foobar") (unique-id . "12345.fsf"))*
>
> with a handful of results.
>
> Then, I go put the point at the message that I want, and hit 'A T'
> (gnus-summary-refer-thread). I expected to be transported to the
> 'original mailbox' so I could mark the message (with !). But it seems
> nothing happens.

I think that's

http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11824

Please try the (trivial) patch given there.

Wolfgang

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

* Re: broken gnus-summary-refer-thread ? in gnus v5.13
  2012-07-03 13:54 ` Wolfgang Jenkner
@ 2012-07-03 14:22   ` Gijs Hillenius
  2012-07-03 15:16     ` Wolfgang Jenkner
       [not found]     ` <mailman.3942.1341331589.855.info-gnus-english@gnu.org>
  0 siblings, 2 replies; 5+ messages in thread
From: Gijs Hillenius @ 2012-07-03 14:22 UTC (permalink / raw)
  To: Wolfgang Jenkner; +Cc: info-gnus-english

On  3 Jul 2012, Wolfgang Jenkner wrote:

Me describing that gnus-summary-refer-thread is buggered

[...]

> I think that's
>
> http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11824
>
> Please try the (trivial) patch given there.

Ow, thanks!


Immediately copied nnir.el.gz to a local dir, added  " 'virtual " as per patch

   (gnus-declare-backend "nnir" 'mail 'virtual)

byte-compiled and loaded that. But it does not fix it, here,
unfortunately.


-- 
BOFH excuse #5:

static from plastic slide rules

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

* Re: broken gnus-summary-refer-thread ? in gnus v5.13
  2012-07-03 14:22   ` Gijs Hillenius
@ 2012-07-03 15:16     ` Wolfgang Jenkner
       [not found]     ` <mailman.3942.1341331589.855.info-gnus-english@gnu.org>
  1 sibling, 0 replies; 5+ messages in thread
From: Wolfgang Jenkner @ 2012-07-03 15:16 UTC (permalink / raw)
  To: Gijs Hillenius; +Cc: info-gnus-english

On Tue, Jul 03 2012, Gijs Hillenius wrote:

> On  3 Jul 2012, Wolfgang Jenkner wrote:
>
> Me describing that gnus-summary-refer-thread is buggered
>
> [...]
>
>> I think that's
>>
>> http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11824
>>
>> Please try the (trivial) patch given there.
>
> Ow, thanks!
>
>
> Immediately copied nnir.el.gz to a local dir, added  " 'virtual " as per patch
>
>    (gnus-declare-backend "nnir" 'mail 'virtual)
>
> byte-compiled and loaded that. But it does not fix it, here,
> unfortunately.

The function `gnus-declare-backend' simply adds an entry to the end of
`gnus-valid-select-methods' (destructively).  So, if you didn't restart
emacs, this variable probably has two entries now whose car is "nnir",
and the old one (without `virtual') is still found first.

Wolfgang

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

* Re: broken gnus-summary-refer-thread ? in gnus v5.13
       [not found]     ` <mailman.3942.1341331589.855.info-gnus-english@gnu.org>
@ 2012-07-04  6:45       ` Gijs Hillenius
  0 siblings, 0 replies; 5+ messages in thread
From: Gijs Hillenius @ 2012-07-04  6:45 UTC (permalink / raw)
  To: info-gnus-english

On  3 Jul 2012, Wolfgang Jenkner wrote:


[...]


> The function `gnus-declare-backend' simply adds an entry to the end of
> `gnus-valid-select-methods' (destructively).  So, if you didn't
> restart emacs, this variable probably has two entries now whose car is
> "nnir", and the old one (without `virtual') is still found first.

Now it works, thank you kindly,

Gijs

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

end of thread, other threads:[~2012-07-04  6:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-07-03 13:24 broken gnus-summary-refer-thread ? in gnus v5.13 Gijs Hillenius
2012-07-03 13:54 ` Wolfgang Jenkner
2012-07-03 14:22   ` Gijs Hillenius
2012-07-03 15:16     ` Wolfgang Jenkner
     [not found]     ` <mailman.3942.1341331589.855.info-gnus-english@gnu.org>
2012-07-04  6:45       ` Gijs Hillenius

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