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
9b2bac71
Commit
9b2bac71
authored
Jan 04, 2009
by
Michael Olson
Browse files
Gnus: Add explanations for recent changes to the code itself.
These are already documented in ChangeLog.
parent
bd710149
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
0 deletions
+4
-0
lisp/gnus/nnimap.el
lisp/gnus/nnimap.el
+2
-0
lisp/net/imap.el
lisp/net/imap.el
+2
-0
No files found.
lisp/gnus/nnimap.el
View file @
9b2bac71
...
...
@@ -620,6 +620,7 @@ If EXAMINE is non-nil the group is selected read-only."
;; to make it more clear.
(
mm-with-unibyte-buffer
(
buffer-disable-undo
)
;; headers can be nil if article is write-only
(
when
headers
(
insert
headers
))
(
let
((
head
(
nnheader-parse-naked-head
uid
)))
(
mail-header-set-number
head
uid
)
...
...
@@ -950,6 +951,7 @@ function is generally only called when Gnus is shutting down."
(
erase-buffer
)
(
let
((
data
(
imap-fetch
article
part
prop
nil
nnimap-server-buffer
)))
;; data can be nil if article is write-only
(
when
data
(
insert
(
nnimap-demule
(
if
detail
(
nth
2
(
car
data
))
...
...
lisp/net/imap.el
View file @
9b2bac71
...
...
@@ -2493,6 +2493,8 @@ Return nil if no complete line has arrived."
(
when
(
eq
(
char-after
)
?\(
)
(
let
(
uid
flags
envelope
internaldate
rfc822
rfc822header
rfc822text
rfc822size
body
bodydetail
bodystructure
flags-empty
)
;; Courier can insert spurious blank characters which will
;; confuse `read', so skip past them.
(
while
(
let
((
moved
(
skip-chars-forward
" \t"
)))
(
prog1
(
not
(
eq
(
char-after
)
?\)
))
(
unless
(
=
moved
0
)
(
backward-char
))))
...
...
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