Eric Abrahamsen writes: > Pankaj Jangid writes: > >> New command 'S A' ('gnus-summary-attach-article') is not working >> properly with multiple articles. >> >> * Steps >> 1. Select multiple articles in summary buffer using process mark '#' >> 2. 'S A' >> 3. Creates a new message buffer with multiple articles attached. BUT all >> the articles are same. The latest among the selected articles is >> repeated multiple times. > > That command sets up the message-mode buffer and makes it current before > iterating over the articles, so it's unable to actually find the > articles and simply repeats the last value of > gnus-original-article-buffer. Okay, that was only right by accident. The real problem was that the code inside the iterate was setting the buffer to the message-mode buffer. Then the calls to `gnus-summary-select-article' kept re-setting to the summary-buffer, but always on the same article. Anyway, would you test this patch and confirm it fixes the problem? Eric