[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

Re: Patch to emacs-w3m



>>>>> In [emacs-w3m : No.05911] Katsumi Yamaoka wrote:

> Thanks for the patch to the w3m-decode-entities-string function.
> I've installed it in the emacs-w3m CVS repository.

I'm sorry to inform you that I've canceled the last change to
w3m.el.  TSUCHIYA Masatoshi, the chief maintainer said that the
change causes the following fault:

(w3m-decode-entities-string "&<>")
 => "&"

It should be:

(with-temp-buffer
  (insert "&<>")
  (w3m-decode-entities)
  (buffer-string))
 => "&<>"

I think the cause by which the with-temp-buffer macro doesn't
work properly should be solved by the origin rather than
emacs-w3m.  So, I withdrew the last change in CVS.  Please don't
think badly of me.
-- 
Katsumi Yamaoka <yamaoka@jpl.org>