From: Glenn Morris Date: Fri, 15 Jul 2011 17:04:12 +0000 (-0400) Subject: * lisp/info.el (info-insert-file-contents): Require jka-compr. (Bug#9090) X-Git-Tag: emacs-pretest-24.0.90~104^2~242 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bd23ebc01d3a58d3f8357d97f49cf00c2ef4b585;p=emacs.git * lisp/info.el (info-insert-file-contents): Require jka-compr. (Bug#9090) --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e15843f136d..307e4df7ae7 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2011-07-15 Glenn Morris + + * info.el (info-insert-file-contents): Require jka-compr. (Bug#9090) + 2011-07-15 Lars Magne Ingebrigtsen * emacs-lisp/cl-macs.el (declare): Link to the "Declarations" node. diff --git a/lisp/info.el b/lisp/info.el index afe7e858fd7..51105be6db3 100644 --- a/lisp/info.el +++ b/lisp/info.el @@ -32,7 +32,7 @@ ;;; Code: -(eval-when-compile (require 'jka-compr) (require 'cl)) +(eval-when-compile (require 'cl)) (defgroup info nil "Info subsystem." @@ -463,6 +463,7 @@ be last in the list.") (defun info-insert-file-contents (filename &optional visit) "Insert the contents of an Info file in the current buffer. Do the right thing if the file has been compressed or zipped." + (require 'jka-compr) ; bug #9090 (let* ((tail Info-suffix-list) (jka-compr-verbose nil) (lfn (if (fboundp 'msdos-long-file-names)