From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 128731 invoked by alias); 22 Sep 2017 02:26:51 -0000 Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner@cygwin.com Mail-Followup-To: cygwin@cygwin.com Received: (qmail 128702 invoked by uid 89); 22 Sep 2017 02:26:50 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=appdata, AppData X-HELO: mail-wm0-f42.google.com Received: from mail-wm0-f42.google.com (HELO mail-wm0-f42.google.com) (74.125.82.42) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 22 Sep 2017 02:26:50 +0000 Received: by mail-wm0-f42.google.com with SMTP id m127so98959wmm.3 for ; Thu, 21 Sep 2017 19:26:49 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to; bh=yMa7W9CdYWoOh5ddmX68uUuNFB83OE9Hi12OYcnapa0=; b=GmAFFfnBX+vE9W1a1L5qP9Y0z91AbfLTqTU5ZxQ3xvy8UkdQWjpnHKKrBpE2KXoOZT EPkm2tfDtePrDdVr/O+oo0BfDojDxAt/eumPcK73nPsXXBkquxC3wN6nsRfTCNILYvQU IUrIe6ZzjQz8o42bxo4j1fzlFwDQJKTWKPOII9wUAJHRdxTRzI2z3cEtotviwb+bFWz3 HQuKo6pKaP1QAuxrZpvAk2Dv2jys1+V6goIjJXsnW6uGr1/4IUK0sBnboyb75f+lNhVe 2P/k9ysz+RmTDyV+I+hDnevFr8izS8adak+c2CvwTdOJ/m377RZMHEfkSkmhlLvS0D7G i6IQ== X-Gm-Message-State: AHPjjUgyABe8yE5A6obgmpurN0VK2voeqpa5voC6lb360GNZ01/ZAGUd jblT7A8FtUQamUrCDq2kcRV5vbRjw6JDxHwd/bY= X-Google-Smtp-Source: AOwi7QC/OnubceSeM5pPp0EIx8hoXR6YqSHBp+MoWD2nKdpABxAHZVmVwD1mSSRQ4TozDyxMcTXpR6z1gGCiIkdiUQ8= X-Received: by 10.28.88.6 with SMTP id m6mr2369123wmb.48.1506047207738; Thu, 21 Sep 2017 19:26:47 -0700 (PDT) MIME-Version: 1.0 Received: by 10.223.136.15 with HTTP; Thu, 21 Sep 2017 19:26:47 -0700 (PDT) In-Reply-To: <5294846.P7PobnLGkX@sandl> References: <2609139.qye4Nty6R7@sandl> <4e508d75-a101-9754-db56-ce5cad801be7@gmail.com> <5294846.P7PobnLGkX@sandl> From: David Standish Date: Fri, 22 Sep 2017 02:26:00 -0000 Message-ID: Subject: Re: Unable to use Cygwin RCS commands in Windows Emacs To: cygwin@cygwin.com Content-Type: text/plain; charset="UTF-8" X-IsSubscribed: yes X-SW-Source: 2017-09/txt/msg00202.txt.bz2 I managed to get windows emacs to work with cygwin rcs. Apart from rcs.exe, the other rcs commands are shell scripts that invoke rcs.exe. Create a modified version of vc-rcs.el replacing the various vc-do-command's with alternate ones that use rcs.exe directly, For example: (apply 'vc-do-command "*vc*" 0 "ci" file becomes (apply 'vc-do-command "*vc*" 0 "rcs" file "ci" Modify your ,emacs to load the alternate vc-rcs.el for example (load-file "c:/Users/ThisIsMe/AppData/vc-rcs.el") Maybe a similar approach will work for you. David -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple