>>>> "Stephen" == Stephen J Turnbull
<stephen(a)xemacs.org> writes:
Uwe Brauer writes:
> (with-current-buffer tmp
> ;;shrug: we asume utf8
> ;; (mm-decode-coding-region (point-min) (point-max) 'utf-8)
> (copy-to-buffer current (point-min) (point-max)))))
That can't work. `url-retrieve' returns a buffer containing
exact
binary contents of the document, no decoding or parsing. Uncomment
the decoding call. In XEmacs 21.5 you can just use
`decode-coding-region' and maybe avoid pulling in mm stuff from
Gnus.
Right and this function also exists in Xemacs 21.4 excellent so the
following trivial modifications saves the day:
(decode-coding-region (point-min) (point-max) 'utf-8)
(copy-to-buffer current (point-min) (point-max)))))
I send this "patch" to the author, thanks a lot to all of you!!
Uwe
_______________________________________________
XEmacs-Beta mailing list
XEmacs-Beta(a)xemacs.org
http://calypso.tux.org/cgi-bin/mailman/listinfo/xemacs-beta