[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: possible changes to w3m
>>>>> In [emacs-w3m : No.08639] David Hansen wrote:
> On Sun, 23 Apr 2006 10:00:19 +0900 Katsumi Yamaoka wrote:
>> Hm, what is what we should do for preformatted text?
> Ignore `w3m-fill-column'. Sometimes it's a pain to read
> <pre> text filled by w3m.
Well,
--8<---------------cut here---------------start------------->8---
(let ((buffer (get-buffer-create "*testing*"))
(w3m-fill-column 16))
(with-current-buffer buffer
(erase-buffer)
(insert "\
The quick brown fox jumps over the lasy dog.
<pre>The quick brown fox jumps over the lasy dog.</pre>
")
(w3m-region (point-min) (point-max)))
(display-buffer buffer))
--8<---------------cut here---------------end--------------->8---
the second (preformatted) line doesn't look filled. Do you mean
it should also be filled? Though I don't think so.