Function: image-file-call-underlying

image-file-call-underlying is a byte-compiled function defined in image-file.el.gz.

Signature

(image-file-call-underlying FUNCTION OPERATION &rest ARGS)

Documentation

Call FUNCTION with image-file-handler and OPERATION inhibited.

Optional argument ARGS are the arguments to call FUNCTION with.

Source Code

;; Defined in /usr/src/emacs/lisp/image-file.el.gz
(defun image-file-call-underlying (function operation &rest args)
  "Call FUNCTION with `image-file-handler' and OPERATION inhibited.
Optional argument ARGS are the arguments to call FUNCTION with."
  (let ((inhibit-file-name-handlers
	 (cons 'image-file-handler
	       (and (eq inhibit-file-name-operation operation)
		    inhibit-file-name-handlers)))
	(inhibit-file-name-operation operation))
    (apply function args)))