Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d96b72a5
Commit
d96b72a5
authored
Dec 26, 2013
by
Lars Ingebrigtsen
Committed by
Katsumi Yamaoka
Dec 26, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
lisp/gnus/gnus-sum.el (gnus-summary-respool-query): Make split tracing work in nnimap groups, too
parent
3b8d5131
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
1 deletion
+21
-1
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+5
-0
lisp/gnus/gnus-sum.el
lisp/gnus/gnus-sum.el
+16
-1
No files found.
lisp/gnus/ChangeLog
View file @
d96b72a5
2013-12-26 Lars Ingebrigtsen <larsi@gnus.org>
* gnus-sum.el (gnus-summary-respool-query): Special-case nnimap so that
we get proper traces there, too.
2013-12-26 Sean Connor <sconnor005@allyinics.org> (tiny change)
* gnus-sum.el (gnus-summary-enter-digest-group): Don't discard previous
...
...
lisp/gnus/gnus-sum.el
View file @
d96b72a5
...
...
@@ -10664,7 +10664,22 @@ groups."
(let (gnus-mark-article-hook)
(gnus-summary-select-article)
(with-current-buffer gnus-original-article-buffer
(let ((groups (nnmail-article-group 'identity trace)))
(let ((groups
(if (eq (car (gnus-find-method-for-group gnus-newsgroup-name))
'nnimap)
;; nnimap has its own splitting variables.
(let ((nnmail-split-methods
(cond
((eq nnimap-split-methods 'default)
nnmail-split-methods)
(nnimap-split-methods
nnimap-split-methods)
(nnimap-split-fancy
'nnmail-split-fancy)))
(nnmail-split-fancy (or nnimap-split-fancy
nnmail-split-fancy)))
(nnmail-article-group 'identity trace))
(nnmail-article-group 'identity trace))))
(unless silent
(if groups
(message "This message would go to %s"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment