diff options
author | Karl Heuer <kwzh@gnu.org> | 1997-10-23 07:01:19 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1997-10-23 07:01:19 +0000 |
commit | 2d1ac393335e5cf4103243cd41200e0474286b6d (patch) | |
tree | 933e0365a0d519d070894e419ef49d77761989fc /lisp/help.el | |
parent | 1e71c25cb8125fb02dc7e9690dd55a2b18b12e2f (diff) | |
download | emacs-2d1ac393335e5cf4103243cd41200e0474286b6d.tar.gz |
(locate-library): Bind jka-compr-inhibit to t.
Diffstat (limited to 'lisp/help.el')
-rw-r--r-- | lisp/help.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/help.el b/lisp/help.el index 03fe4363434..cc322482f14 100644 --- a/lisp/help.el +++ b/lisp/help.el @@ -707,7 +707,8 @@ is used instead of `load-path'." (interactive (list (read-string "Locate library: ") nil nil t)) - (let (result) + (let (result + (jka-compr-inhibit t)) (catch 'answer (mapcar (lambda (dir) |