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 | 1be05f14ca763d48f98aa43083e16fcc01bcb5ea (patch) | |
tree | b880107a4c3fb0c33d26851fdae280a38c92c8ba /lisp | |
parent | bb56d35ba2b384a09f0344932dca7bc2919b0140 (diff) | |
download | emacs-1be05f14ca763d48f98aa43083e16fcc01bcb5ea.tar.gz |
(jka-compr-load): Bind load-force-doc-strings.
Diffstat (limited to 'lisp')
-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))) |