[Date Prev][Date Next][Thread Prev][][Date Index][Thread Index]

Re: [emacs-w3m/emacs-w3m] Error displaying inline images (#66)



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:

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, view it on GitHub, or mute the thread.