[emacs-w3m:13531] Re: [emacs-w3m/emacs-w3m] Error displaying inline images (#66)
yamaoka <[email protected]>
| Newsgroups | gmane.emacs.w3m |
|---|---|
| Message-ID | <emacs-w3m/emacs-w3m/issues/66/[email protected]> |
I'm not sure if it is the cause of your problem but I found a bug in the w3m-external-view function and fixed it in the emacs-w3m git master. Here is a diff: ```diff --git a/w3m.el b/w3m.el index d8f1422e..3c6d8c80 100644 --- a/w3m.el +++ b/w3m.el @@ -7105,7 +7105,7 @@ command instead." (when (consp method) (let ((result)) (setq method - (dolist (elem (nreverse method) result) + (dolist (elem method (nreverse result)) (push (if (and (stringp elem) (string-match "\\`[\"']?%s[\"']?\\'" elem)) ``` Could you spend some time to try this? -- 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/66#issuecomment-522445691