From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Kai Grossjohann Newsgroups: gmane.emacs.devel Subject: Re: Patch: new function process-file (call-process with file handlers) Date: Sun, 24 Oct 2004 22:06:54 +0200 Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Message-ID: <86r7nnyj6p.fsf@ketchup.de.uu.net> References: <863c0dnxxe.fsf@ketchup.de.uu.net> <86y8i5m9tf.fsf@ketchup.de.uu.net> <877jppm5x6.fsf-monnier+emacs@gnu.org> <864qklqk17.fsf@ketchup.de.uu.net> <200410240117.i9O1H3G15317@raven.dms.auburn.edu> <86fz44wkfi.fsf@ketchup.de.uu.net> <200410241829.i9OITPZ25928@raven.dms.auburn.edu> NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1098648469 11210 80.91.229.6 (24 Oct 2004 20:07:49 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Sun, 24 Oct 2004 20:07:49 +0000 (UTC) Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Oct 24 22:07:37 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1CLoeO-0002En-00 for ; Sun, 24 Oct 2004 22:07:37 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CLom0-00012N-KI for ged-emacs-devel@m.gmane.org; Sun, 24 Oct 2004 16:15:28 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.33) id 1CLolq-00011y-G6 for emacs-devel@gnu.org; Sun, 24 Oct 2004 16:15:18 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.33) id 1CLolp-00011S-KQ for emacs-devel@gnu.org; Sun, 24 Oct 2004 16:15:17 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1CLolp-00011P-HS for emacs-devel@gnu.org; Sun, 24 Oct 2004 16:15:17 -0400 Original-Received: from [80.91.229.2] (helo=main.gmane.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1CLodx-0007Gz-8d for emacs-devel@gnu.org; Sun, 24 Oct 2004 16:07:09 -0400 Original-Received: from list by main.gmane.org with local (Exim 3.35 #1 (Debian)) id 1CLodv-000884-00 for ; Sun, 24 Oct 2004 22:07:07 +0200 Original-Received: from pd9e1e03f.dip.t-dialin.net ([217.225.224.63]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 24 Oct 2004 22:07:07 +0200 Original-Received: from kai by pd9e1e03f.dip.t-dialin.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Sun, 24 Oct 2004 22:07:07 +0200 X-Injected-Via-Gmane: http://gmane.org/ Original-To: emacs-devel@gnu.org Original-Lines: 46 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: pd9e1e03f.dip.t-dialin.net User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:6uV5wrAJCwJesDXEJE3243w1UIY= X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:28849 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:28849 Luc Teirlinck writes: > I am using VC. > > If I do `C-x v v C-c C-c" I get: > > vc-do-command: Running cvs...FAILED (nil) > > My changes got committed OK to Savannah CVS, but the version number in > the mode line got not updated. Before your recent changes, it got > updated. Duh. I apologize. I confess, though, that I don't know what's wrong. I never used CVS with Tramp. I just tried to open an RCS-controlled file /sudo:root@localhost:/tmp/foo, and with this file, C-x v = and C-x v v seemed to work in some fashion, though I also see the error message "RCS/foo,v: no such file or directory". Hm. Now I also tested with a "local" CVS repository as follows: ssh testuser@localhost cvs -d $HOME/cvsrepo init mkdir $HOME/cvstest cd $HOME/cvstest echo bla > foo cvs add foo cvs ci -m'' foo Then, I used Emacs to edit the file foo: C-x C-f /ssh:testuser@localhost:/home/testuser/cvstest/foo RET Then, I made some changes, saved them, invoked C-x v =. That complained a bit ("no such file or directory" for foo.~1.1.~ and foo) but did produce a diff. Then, I committed the changes, and that also produced an error message but did commit. But this was the first time for me to use CVS via Tramp, so I can't say whether what I saw was normal. Can you show me how to reproduce the problem? Kai