diff lisp/gnus/gnus-art.el @ 110599:eae9fd6b889d

gnus-art.el (gnus-mime-delete-part): Fix Lisp type of byte(s).
author Katsumi Yamaoka <yamaoka@jpl.org>
date Mon, 27 Sep 2010 03:16:55 +0000
parents 415e87a42437
children 84a76c5e1b1c
line wrap: on
line diff
--- a/lisp/gnus/gnus-art.el	Sun Sep 26 23:15:50 2010 +0000
+++ b/lisp/gnus/gnus-art.el	Mon Sep 27 03:16:55 2010 +0000
@@ -5072,7 +5072,7 @@
       (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 @@
 	    "|\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