[emacs-w3m:13397] [emacs-w3m/emacs-w3m] Wrong type argument: stringp, w3m-filter-prefer-lazy-images (#39)
garin <[email protected]>
| Newsgroups | gmane.emacs.w3m |
|---|---|
| Message-ID | <emacs-w3m/emacs-w3m/issues/[email protected]> |
The following error occurs when w3m starts
`error in process sentinel: Wrong type argument: stringp, w3m-filter-prefer-lazy-images`
他の w3m-filter-* を見ると フィルタ関数の前に URL の文字列を指定していました。
意図した動作になっているかはわからないですが、 w3m-filter-iframe と同じように空文字("")を追加することで起動時のエラーは発生しなくなりました。
``` diff
--- w3m-filter.el.org 2019-05-09 08:52:17.473465049 +0900
+++ w3m-filter.el 2019-05-09 09:12:42.858943673 +0900
@@ -145,6 +145,7 @@
w3m-filter-iframe)
(t ("Prefer a lazy image specified with data-src= in img tags"
"img タグ内の data-src= で指定される遅延画像を優先します")
+ ""
w3m-filter-prefer-lazy-images))
"List of filter configurations applied to web contents.
Each filter configuration consists of the following form:
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/emacs-w3m/emacs-w3m/issues/39