diff options
author | Andrew Innes <andrewi@gnu.org> | 1999-07-01 19:40:37 +0000 |
---|---|---|
committer | Andrew Innes <andrewi@gnu.org> | 1999-07-01 19:40:37 +0000 |
commit | 0fe2a56db73980def5b2263906b27add89fce0ab (patch) | |
tree | 5f7f7e4838958ec2ea4b24512ba02dc4dd900d48 /lisp/ange-ftp.el | |
parent | 4b27f17c03715aa834f38d5989ad992fbb657e06 (diff) | |
download | emacs-0fe2a56db73980def5b2263906b27add89fce0ab.tar.gz |
(ange-ftp-load): Bind load-force-doc-strings to t,
to prevent references to temp files.
Diffstat (limited to 'lisp/ange-ftp.el')
-rw-r--r-- | lisp/ange-ftp.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/ange-ftp.el b/lisp/ange-ftp.el index 97d6e4c3736..43bdd2e306a 100644 --- a/lisp/ange-ftp.el +++ b/lisp/ange-ftp.el @@ -3950,6 +3950,8 @@ directory, so that Emacs will know its current contents." (let ((tryfiles (if nosuffix (list file) (list (concat file ".elc") (concat file ".el") file))) + ;; make sure there are no references to temp files + (load-force-doc-strings t) copy) (while (and tryfiles (not copy)) (catch 'ftp-error |