[ Talking about Windows, there's still this in bzr.el which I can't test :
(defun bzr-config-directory () "Path of the configuration directory for bzr." ;; TODO: not windows portable. (expand-file-name "~/.bazaar/")) (defun bzr-config-file (file) "Path of configuration file FILE for bzr. File can be, i.e. bazaar.conf, ignore, locations.conf, ..." ;; TODO: not windows portable. (concat (bzr-config-directory) file)) If a windows user could provide a patch ... ] [EMAIL PROTECTED] (Edgar Gonçalves) writes: > The features look great, but I started noticing my CPU usage going too often > to > the ninety-ish percent. Did you check that the CPU usage actually comes from Emacs, or is it from a subprocess ? Emacs is mostly non-preemptive, so when it uses the CPU itself, it freezes, and you can't use it before it completes (except if the elisp code is using some complex tricks, but I'd be surprised if this is the case of DVC). OTOH, we might well be launching subprocesses in an incorrect way. -- Matthieu _______________________________________________ Dvc-dev mailing list [email protected] https://mail.gna.org/listinfo/dvc-dev
