+2014-03-19 Juanma Barranquero <lekktu@gmail.com>
+
+ * emacs-lisp/package.el (describe-package-1):
+ Decode commentary (bug#16733).
+
2014-03-18 Juanma Barranquero <lekktu@gmail.com>
* custom.el (defcustom): Doc fix: recommend avoiding destructive
(setq readme-string (buffer-string))
t))
(error nil))
- (insert readme-string))
+ (let ((coding (detect-coding-string readme-string t)))
+ (insert (decode-coding-string readme-string coding t))))
((file-readable-p readme)
(insert-file-contents readme)
(goto-char (point-max))))))))