GNU bug report logs -
#16733
messed up unicode chars in package description
Previous Next
Reported by: Glenn Morris <rgm <at> gnu.org>
Date: Thu, 13 Feb 2014 01:48:02 UTC
Severity: normal
Found in version 24.3
Fixed in version 24.4
Done: Juanma Barranquero <lekktu <at> gmail.com>
Bug is archived. No further changes may be made.
Full log
View this message in rfc822 format
Juanma Barranquero wrote:
> On Thu, Feb 13, 2014 at 2:47 AM, Glenn Morris <rgm <at> gnu.org> wrote:
>
>> Scroll down the description past the part that says "M-x aa2u RET".
>> The buffer is completely messed up at this point, showing raw
>> characters instead of the unicode box that you see if you visit the raw
>> source file for the package. See attached image.
>
> This seems enough.
OK. (Presumably it could still go wrong if it ever finds a non-ascii,
non-utf-8 package, but those are probably very rare.)
> === modified file 'lisp/emacs-lisp/package.el'
> --- lisp/emacs-lisp/package.el 2014-03-14 20:55:40 +0000
> +++ lisp/emacs-lisp/package.el 2014-03-19 01:31:28 +0000
> @@ -1528,7 +1528,8 @@
> (let ((version-control 'never)
> (require-final-newline t))
> (save-buffer))
> - (setq readme-string (buffer-string))
> + (setq readme-string (decode-coding-string
> + (buffer-string) 'prefer-utf-8 t))
> t))
> (error nil))
> (insert readme-string))
This bug report was last modified 11 years and 63 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.