diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-08-02 23:56:20 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-08-02 23:56:20 +0000 |
commit | 9b37d8a91055ea2948251361f9c025d4f19cd990 (patch) | |
tree | f22ff8470c3734ab8c6a0459b817f986b3a733be /lisp/jka-compr.el | |
parent | b5458fc2f1573b2af1bf4289a7e06b3641bcdded (diff) | |
download | emacs-9b37d8a91055ea2948251361f9c025d4f19cd990.tar.gz |
(jka-compr-load): Bind load-force-doc-strings.
Diffstat (limited to 'lisp/jka-compr.el')
-rw-r--r-- | lisp/jka-compr.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/jka-compr.el b/lisp/jka-compr.el index b25e527c9a6..d8fd49e8da5 100644 --- a/lisp/jka-compr.el +++ b/lisp/jka-compr.el @@ -624,7 +624,8 @@ There should be no more than seven characters after the final `/'") (or nomessage (message "Loading %s..." file)) - (load load-file noerror t t) + (let ((load-force-doc-strings t)) + (load load-file noerror t t)) (or nomessage (message "Loading %s...done." file))) |