[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: error in w3m-current-title
- From: Katsumi Yamaoka <yamaoka@xxxxxxx>
- Date: Mon, 05 Feb 2007 11:55:00 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 09182
- References: <87ps8qiq66.fsf@comcast.net>
>>>>> In [emacs-w3m : No.09178] Robert D. Crawford wrote:
> I seem to be experiencing an error in emacs-w3m. When a page is first
> loaded, the value of the variable w3m-current-title is often nil, and
> the function w3m-current-title returns the url without the http://.
> Examples are slashdot.org and osnews.com.
Thank you for the bug report. I've fixed it in the CVS trunk.
The cause is that the `w3m-create-text-page' function sets the
value of `w3m-current-title' in the following style:
(setq w3m-current-title (setf (w3m-arrived-title URL) "TITLE"))
It is expanded into:
(setq w3m-current-title (w3m-arrived-put URL 'title "TITLE"))
And `w3m-arrived-put' doesn't return "TITLE" if URL has not been
registered in the `w3m-arraived-db'.
Regards,