On 2007/08/24, at 18:58, lee tsgo wrote: > > Hi, I am able to use vc mode (e.g., C-x v v ) with carbon emacs on my > powerbook computer, but when working on my imac, cvs always hangs. > Eventually, the cvs server times out and the emacs message in *vc* > buffer is "cvs [commit aborted]: end of file from server (consult > above messages if any)". > > When running cvs from terminal window, everything is fine, so I > assume my environment variables are ok (CVS_RSH).
Probably CVS_RSH is not set on Emacs, since Emacs.app does not import environment variables from your shell (except for PATH). Put the below line to your .emacs.el: (setenv "CVS_RSH" "ssh") or prepare a wrapper script instead. #!/bin/bash CVS_RSH=ssh cvs $* Seiji > Something must be > going wrong with how emacs is forming/submitting the command because > the server apparently never see it. Any suggestions for debugging > this problem? Is there a verbose mode or something that I can enable > to trace this? > > Thanks for any suggestions. > > > --~--~---------~--~----~------------~-------~--~----~ "Carbon Emacs" group mailing list. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/carbon-emacs?hl=en -~----------~----~----~----~------~----~------~--~---
