aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/jka-compr.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/lisp/jka-compr.el b/lisp/jka-compr.el
index 11aaecc04c8..58453869f92 100644
--- a/lisp/jka-compr.el
+++ b/lisp/jka-compr.el
@@ -716,10 +716,15 @@ There should be no more than seven characters after the final `/'."
716(put 'byte-compiler-base-file-name 'jka-compr 716(put 'byte-compiler-base-file-name 'jka-compr
717 'jka-compr-byte-compiler-base-file-name) 717 'jka-compr-byte-compiler-base-file-name)
718 718
719(defvar jka-compr-inhibit nil
720 "Non-nil means inhibit automatic uncompression temporarily.
721Lisp programs can bind this to t to do that.
722It is not recommended to set this variable permanently to anything but nil.")
723
719(defun jka-compr-handler (operation &rest args) 724(defun jka-compr-handler (operation &rest args)
720 (save-match-data 725 (save-match-data
721 (let ((jka-op (get operation 'jka-compr))) 726 (let ((jka-op (get operation 'jka-compr)))
722 (if jka-op 727 (if (and jka-op (not jka-compr-inhibit))
723 (apply jka-op args) 728 (apply jka-op args)
724 (jka-compr-run-real-handler operation args))))) 729 (jka-compr-run-real-handler operation args)))))
725 730