"Sam Steingold" <[EMAIL PROTECTED]> writes: > I get the appended error when I do M-x dvc-status in a remote directory. > I think dvc should be integrated with tramp so that the remote files can > be handled transparently. > > note that this is not solvable with "just create a local repo". > the files must be on the remote machine because my workstation is not > powerful enough to compile them. > > it would suck if I had to run an extra copy on emacs on the remote machine.
The integration could be done by using process-file instead of call-process and by using start-file-process instead of start-process I use the following in psvn.el (but I am not sure, if it actually works, because I have not yet tested it): (defvar svn-call-process-function (if (fboundp 'process-file) 'process-file 'call-process)) (defvar svn-start-process-function (if (fboundp 'start-file-process) 'start-file-process 'start-process)) Unfortunately I don't have the time at the moment to implement this change. Stefan. _______________________________________________ Dvc-dev mailing list [email protected] https://mail.gna.org/listinfo/dvc-dev
