[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: using filter correctly?
- From: Katsumi Yamaoka <yamaoka@xxxxxxx>
- Date: Mon, 29 Jul 2013 11:00:39 +0900
- X-ml-name: emacs-w3m
- X-mail-count: 12103
- References: <CAJcAo8sSTjcrDN4FpUoUCua42sVc=v=MW=+vtNaCgZoJ1McEQA@xxxxxxxxxxxxxx> <CAJcAo8uNDFrbTQKfWSBGRN0ZnJU3QbUsbp+gwahg2PMxUxgHMg@xxxxxxxxxxxxxx> <CAJcAo8ud6PsM-5Y6uYkRWfsuPJpnXMigfckgdWmSsBu4rVqN_w@xxxxxxxxxxxxxx> <b4msiz7z2n5.fsf@xxxxxxx> <CAJcAo8v1G-DpVPS58Vx=2fTYBEEN7aouOj=D9d7WyhSs1xCLYQ@xxxxxxxxxxxxxx> <b4mk3kgsuk5.fsf@xxxxxxx> <CAJcAo8tbrP3n3nryNJHV3JAUZjz-t7feGjdu8NnPUmFyguPx-w@xxxxxxxxxxxxxx>
In [emacs-w3m : No.12102] Samuel Wales wrote:
> It is the first item of `w3m-filter-configuration', and
> `w3m-filter-rules' is nil.
> I ran edebug on it [it does get called], and the buffer is blank.
> That must be the reason for the search not working, but I do not know
> the reason why it would be blank. The page shows after the filter is
> run.
The buffer where your filter runs is " *w3m-work*" (or perhaps
" *w3m-work*-123456"). Note that the name begins with SPC.
Here is a handy way to view that buffer while e-debugging. Add
something like this snippet to the beginning of your filter
function:
(let ((pop-up-frames t)) (pop-to-buffer (current-buffer)))