No, it didn't ask me for an encoding. Good stab in the dark. I ran your new function code and the mailcap-user-mime-data code again (after loading eww). No debugger triggered. It converted and showed the pdf correctly. On Thu, Nov 5, 2020 at 8:50 AM Eli Zaretskii wrote: > > From: Nicholas Harrison > > Date: Thu, 5 Nov 2020 08:18:19 -0700 > > Cc: 44338@debbugs.gnu.org > > > > After running the code you gave and using eww to open a pdf, this is > what I get: > > > > Debugger entered--entering a function: > > * select-safe-coding-system("100" nil prefer-utf-8 nil > > "c:/Users/nicho/AppData/Local/Temp/docview1001/!eww > > pdf!-2072e1249b26ee28e656f1a01f0cb4a9/resolution.el") > > write-region("100" nil > "c:/Users/nicho/AppData/Local/Temp/docview1001/!eww > > pdf!-2072e1249b26ee28e656f1a01f0cb4a9/resolution.el" nil silently) > > #f(compiled-function () #)() > > doc-view-sentinel(#png> "finished\n") > > > > Debugger entered--returning value: prefer-utf-8-dos > > select-safe-coding-system("100" nil prefer-utf-8 nil > "c:/Users/nicho/AppData/Local/Temp/docview1001/!eww > > pdf!-2072e1249b26ee28e656f1a01f0cb4a9/resolution.el") > > write-region("100" nil > "c:/Users/nicho/AppData/Local/Temp/docview1001/!eww > > pdf!-2072e1249b26ee28e656f1a01f0cb4a9/resolution.el" nil silently) > > #f(compiled-function () #)() > > doc-view-sentinel(#png> "finished\n") > > Hmm, that's not the problem you reported originally, and it doesn't > look like Emacs asked you to select an encoding here, did it? > > > The buffer it ends up with says: > > Cannot display this page! > > Maybe because of a conversion failure! > > So I guess I'm confused now and don't know what is the problem, sorry. > > A stub in the dark: if you replace raw-text with raw-text-unix here: > > (defun eww-display-pdf () > (let ((data (buffer-substring (point) (point-max)))) > (pop-to-buffer-same-window (get-buffer-create "*eww pdf*")) > (let ((coding-system-for-write 'raw-text) <<<<<<<<<<<<<<<<<<< > (inhibit-read-only t)) > (erase-buffer) > (insert data) > (mailcap-view-mime "application/pdf"))) > (goto-char (point-min))) > > does the problem go away? >