[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Q] download file synchronously?
- From: Matt Hodges <MPHodges@xxxxxxxxxxxxxx>
- Date: Tue, 12 Oct 2004 19:44:34 +0100
- X-ml-name: emacs-w3m
- X-mail-count: 07125
- References: <m3r7o49doe.fsf@naru.home>
>>>>> Joakim Verona writes:
> I'm trying to use the function w3m-download to download a file
> synchronously. This file will then be used after its been
> downloaded.
> I only get it to do an asynchronous download however.
> My call looks like this:
> (w3m-download url "/tmp/x.torrent" nil nil) ;it apears this runs
> asynchronously, although it says synch when handler nil
> Any hints?
Maybe something like:
(let ((w3m-async-exec nil))
(w3m-download ...))
Matt