Fix calling processes inside ffap

* lisp/ffap.el (ffap--url-file-handler): Handle also
`unhandled-file-name-directory'.  (Bug#74208)
This commit is contained in:
Michael Albinus 2024-12-08 18:22:17 +01:00
parent 9a0e26b886
commit 4960af1c96

View file

@ -1512,6 +1512,7 @@ which may actually result in an URL rather than a filename."
;; We mainly just want to disable these bits:
(substitute-in-file-name (car args))
(expand-file-name (car args))
(unhandled-file-name-directory temporary-file-directory)
(otherwise
(apply operation args)))))