Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
9830626b
Commit
9830626b
authored
Jul 25, 2012
by
Katsumi Yamaoka
Browse files
nnimap.el (nnimap-get-responses): Don't remove, still used
parent
3cc5a3a8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+4
-0
lisp/gnus/nnimap.el
lisp/gnus/nnimap.el
+9
-0
No files found.
lisp/gnus/ChangeLog
View file @
9830626b
2012-07-25 Katsumi Yamaoka <yamaoka@jpl.org>
* nnimap.el (nnimap-get-responses): Don't remove, still used.
2012-07-24 Julien Danjou <julien@danjou.info>
* mail-source.el (mail-source-movemail-and-remove): Remove, unused.
...
...
lisp/gnus/nnimap.el
View file @
9830626b
...
...
@@ -1852,6 +1852,15 @@ textual parts.")
(forward-line 1)))
(buffer-substring (point) end))))
(defun nnimap-get-responses (sequences)
(let (responses)
(dolist (sequence sequences)
(goto-char (point-min))
(when (re-search-forward (format "^%d " sequence) nil t)
(push (list sequence (nnimap-parse-response))
responses)))
responses))
(defvar nnimap-incoming-split-list nil)
(defun nnimap-fetch-inbox (articles)
...
...
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