Function: jka-compr-run-real-handler

jka-compr-run-real-handler is a byte-compiled function defined in jka-compr.el.gz.

Signature

(jka-compr-run-real-handler OPERATION ARGS)

Source Code

;; Defined in /usr/src/emacs/lisp/jka-compr.el.gz
;; If we are given an operation that we don't handle,
;; call the Emacs primitive for that operation,
;; and manipulate the inhibit variables
;; to prevent the primitive from calling our handler again.
(defun jka-compr-run-real-handler (operation args)
  (let ((inhibit-file-name-handlers
	 (cons #'jka-compr-handler
	       (and (eq inhibit-file-name-operation operation)
		    inhibit-file-name-handlers)))
	(inhibit-file-name-operation operation))
    (apply operation args)))