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
972596cc
Commit
972596cc
authored
Mar 10, 2012
by
David Edmondson
Committed by
Katsumi Yamaoka
Mar 10, 2012
Browse files
mm-uu.el (mm-uu-forward-extract): Be more liberal when extracting forwards as MIME
parent
052e28ac
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+5
-0
lisp/gnus/mm-uu.el
lisp/gnus/mm-uu.el
+5
-1
No files found.
lisp/gnus/ChangeLog
View file @
972596cc
2012-03-10 David Edmondson <dme@dme.org>
* mm-uu.el (mm-uu-forward-extract): Allow for blank lines between the
'Forwarded Message' header and the start of the message.
2012-03-04 Thierry Volpiatto <thierry.volpiatto@gmail.com>
* gnus-msg.el (gnus-msg-mail): Call `message-mail' correctly when Gnus
...
...
lisp/gnus/mm-uu.el
View file @
972596cc
...
...
@@ -430,7 +430,11 @@ apply the face `mm-uu-extract'."
(
defun
mm-uu-forward-extract
()
(
mm-make-handle
(
mm-uu-copy-to-buffer
(
progn
(
goto-char
start-point
)
(
forward-line
)
(
point
))
(
progn
(
goto-char
start-point
)
(
forward-line
)
(
skip-chars-forward
"\n"
)
(
point
))
(
progn
(
goto-char
end-point
)
(
forward-line
-1
)
(
point
)))
'
(
"message/rfc822"
(
charset
.
gnus-decoded
))))
...
...
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