mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-17 01:34:21 +00:00
lisp/emacs-lisp/package.el (describe-package-1): Decode commentary (bug#16733).
This commit is contained in:
parent
51a7978ae8
commit
f88bdc45e0
2 changed files with 7 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
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
|
||||
|
|
|
|||
|
|
@ -1531,7 +1531,8 @@ If optional arg NO-ACTIVATE is non-nil, don't activate packages."
|
|||
(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))))))))
|
||||
|
|
|
|||
Loading…
Reference in a new issue