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
e5fa3899
Commit
e5fa3899
authored
Sep 27, 2010
by
Katsumi Yamaoka
Browse files
gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
parent
82bccbfa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
lisp/gnus/ChangeLog
lisp/gnus/ChangeLog
+4
-0
lisp/gnus/gnus-art.el
lisp/gnus/gnus-art.el
+3
-3
No files found.
lisp/gnus/ChangeLog
View file @
e5fa3899
2010-09-27 Katsumi Yamaoka <yamaoka@jpl.org>
* gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
2010-09-26 Lars Magne Ingebrigtsen <larsi@gnus.org>
* nndoc.el (nndoc-request-list): Return success always.
...
...
lisp/gnus/gnus-art.el
View file @
e5fa3899
...
...
@@ -5072,7 +5072,7 @@ Deleting parts may malfunction or destroy the article; continue? "))
(unless data
(error "No MIME part under point"))
(with-current-buffer (mm-handle-buffer data)
(
let
((
bsize
(
format
"%s"
(
buffer-size
)))
)
(let ((bsize (buffer-size)))
(erase-buffer)
(insert
(concat
...
...
@@ -5081,8 +5081,8 @@ Deleting parts may malfunction or destroy the article; continue? "))
"|\n"
"| Type: " type "\n"
"| Filename: " filename "\n"
"| Size (encoded): "
bsize
(
format
" byte%s\n"
(
if
(
=
bsize
1
)
"| Size (encoded): " (format "
%s
byte%s\n"
bsize
(if (= bsize 1)
""
"s"))
(when description
...
...
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