all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* Async/Sync url-copy-file?
@ 2010-01-03 23:39 Lennart Borgman
  0 siblings, 0 replies; only message in thread
From: Lennart Borgman @ 2010-01-03 23:39 UTC (permalink / raw
  To: Emacs-Devel devel

Can a sane person please explain to me how this code

    (message "before url-copy-file %S" temp-list-file)
    (url-copy-file url temp-list-file t t)) ;; overwrite, keep time
    (message "after  url-copy-file %S" temp-list-file)
    (with-current-buffer (find-file-noselect temp-list-file)
      (set-visited-file-name nil t)
      (message "before (delete-file %S)" temp-list-file)
      (when (file-exists-p temp-list-file) (delete-file temp-list-file))
      (message "after  (delete-file %S)" temp-list-file)

could give this output:

    before url-copy-file "c:/test/d27/web-vcs-temp-list.tmp"
    before (delete-file "c:/test/d27/web-vcs-temp-list.tmp")
    after  (delete-file "c:/test/d27/web-vcs-temp-list.tmp")
    before url-copy-file "c:/test/d27/util/web-vcs-temp-list.tmp"
    Contacting host: bazaar.launchpad.net:80
    Wrote c:/test/d27/util/web-vcs-temp-list.tmp
    after  url-copy-file "c:/test/d27/util/web-vcs-temp-list.tmp"

And why I am asked if I want to revert the buffer when temp-list-file
changes on disk?

Could this be a bug in the url-copy-file so that it runs async?




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-01-03 23:39 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-03 23:39 Async/Sync url-copy-file? Lennart Borgman

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.