Re: Gnus sometimes reports new messages but not showing them on IMAP server
Dan Christensen <[email protected]>
| Newsgroups | gmane.emacs.gnus.general |
|---|---|
| Message-ID | <[email protected]> |
On Apr 21, 2024, Arash Esbati <[email protected]> wrote: > Dan Christensen <[email protected]> writes: > >> I don't know what is going on behind the scenes, but `M-g' is necessary >> for me to see up-to-date information sometimes. > > I haven't tried to read/understand the code, but in the Group buffer, > neither 'g' nor 'C-u g' does what 'M-g' does inside the Summary buffer > of an IMAP group. Just to clarify, I use `M-g' in the Group buffer, but looking at the code I think using it in the Summary buffer does the same thing. Aside: While looking at the code, I think I noticed an error in the doc string of the function that ends up getting called: (defun gnus-group-get-new-news-this-group (&optional n dont-scan) "Check for newly arrived news in the current group (and the N-1 next groups). The difference between N and the number of newsgroup checked is returned. If N is negative, this group and the N-1 previous groups will be checked. If DONT-SCAN is non-nil, scan non-activated groups as well." I think the description of DONT-SCAN is inverted (as its name suggests). It should say: If DONT-SCAN is nil, scan non-activated groups as well. Or If DONT-SCAN is non-nil, then non-activated groups are not scanned. Dan