Fixed in the emacs-w3m git master. On Tue, 30 Jul 2019 08:02:18 +0900, Katsumi Yamaoka wrote: > Probably it would be necessary to have an exception list for the > strip-query feature of emacs-w3m, and it should include at least > a regexp for the debian bugreports.
Hmm, it was perhaps an over anxiety. Instead, I've fixed the one looking like a typo as follows: --- a/w3m.el +++ b/w3m.el @@ -5448,7 +5448,7 @@ It will put the retrieved contents into the current buffer. See (defun w3m--retrieve-1--handler-function (url post-data referer no-cache counter handler temp-file attr) (when (nth 6 attr) - (setf (nth 6 attr) (w3m-url-strip-query (nth 6 attr)))) + (setf (nth 6 attr) (w3m--url-strip-queries (nth 6 attr)))) (and temp-file (file-exists-p temp-file) (delete-file temp-file))