From: Richard M. Stallman Date: Wed, 2 Aug 1995 23:56:20 +0000 (+0000) Subject: (jka-compr-load): Bind load-force-doc-strings. X-Git-Tag: emacs-19.34~3102 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9b37d8a91055ea2948251361f9c025d4f19cd990;p=emacs.git (jka-compr-load): Bind load-force-doc-strings. --- 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)))