delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2017/09/21/22:27:04

X-Recipient: archive-cygwin AT delorie DOT com
DomainKey-Signature: a=rsa-sha1; c=nofws; d=sourceware.org; h=list-id
:list-unsubscribe:list-subscribe:list-archive:list-post
:list-help:sender:mime-version:in-reply-to:references:from:date
:message-id:subject:to:content-type; q=dns; s=default; b=h1Y0gBV
CIAtISQxJitgDIGQjAi2+2jymHe9GufjSwReGp+/QOSdOiqyBiwuxefhR4KXFBUw
Z7OGBaY0StEXE5gIrA+ZZ7MtjFQI8ESiI1c8SPfNE58uTrR/BvsrG8HDUbUEJLx8
9Mp3yDzttRkk/SvOEFtkEbD6fJWDp6m7C4aQ=
DKIM-Signature: v=1; a=rsa-sha1; c=relaxed; d=sourceware.org; h=list-id
:list-unsubscribe:list-subscribe:list-archive:list-post
:list-help:sender:mime-version:in-reply-to:references:from:date
:message-id:subject:to:content-type; s=default; bh=xMFMrQRs67CiS
+Q3xgSmJY4QMo4=; b=HBz80BPoYdNS4jgMMMc196kbewxhUoMDi/rvi2zw4gFAc
/+1oPP19FaC9kQ2RMwMvoU4fd7ex/ch1YRhCXivP+LJy2thL0eA3AHvoQdgCjMrL
tpjUyObQDrQMeR3wfe7QwUVS3ddMiToP6z4gUwIUr8ZvQlW+SqEsWEY5o21yNs=
Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm
List-Id: <cygwin.cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe AT cygwin DOT com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin AT cygwin DOT com>
List-Help: <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner AT cygwin DOT com
Mail-Followup-To: cygwin AT cygwin DOT com
Delivered-To: mailing list cygwin AT cygwin DOT com
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
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
In-Reply-To: <5294846.P7PobnLGkX@sandl>
References: <2609139 DOT qye4Nty6R7 AT sandl> <4e508d75-a101-9754-db56-ce5cad801be7 AT gmail DOT com> <5294846 DOT P7PobnLGkX AT sandl>
From: David Standish <dnstandish AT gmail DOT com>
Date: Thu, 21 Sep 2017 22:26:47 -0400
Message-ID: <CADX9Ks9hBmF_nb3zCM2HCPhty7aLnvb+8208b8Z_NAowY_x46g@mail.gmail.com>
Subject: Re: Unable to use Cygwin RCS commands in Windows Emacs
To: cygwin AT cygwin DOT com
X-IsSubscribed: yes

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

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019