emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: PCL-CVS: "Can not run two cvs processes simultaneously"


From: Romain Francoise
Subject: Re: PCL-CVS: "Can not run two cvs processes simultaneously"
Date: Tue, 01 Aug 2006 18:17:13 +0200

I'll install the following change unless someone objects:

Index: lisp/pcvs-defs.el
===================================================================
RCS file: /cvsroot/emacs/emacs/lisp/pcvs-defs.el,v
retrieving revision 1.38
diff -c -r1.38 pcvs-defs.el
*** lisp/pcvs-defs.el   7 Jul 2006 15:39:53 -0000       1.38
--- lisp/pcvs-defs.el   1 Aug 2006 16:14:59 -0000
***************
*** 240,248 ****
  the directory name of the cvs buffer.")
  
  (defvar cvs-temp-buffer-name
!   ;; Was '(expand-file-name " *cvs-tmp*" dir), but that causes them to
!   ;; become non-hidden if uniquification is done `forward'.
!   " *cvs-tmp*"
    "*Name of the cvs temporary buffer.
  Output from cvs is placed here for asynchronous commands.")
  
--- 240,253 ----
  the directory name of the cvs buffer.")
  
  (defvar cvs-temp-buffer-name
!   ;; If uniquification is done `forward' the buffer becomes non-hidden,
!   ;; so force a hidden buffer in that case.  Note that having a unique
!   ;; name here prevents concurrent runs of CVS, even in different *cvs*
!   ;; buffers!
!   '(if (and (boundp 'uniquify-buffer-name-style)
!           (eq uniquify-buffer-name-style 'forward))
!        " *cvs-tmp*"
!      (expand-file-name " *cvs-tmp*" dir))
    "*Name of the cvs temporary buffer.
  Output from cvs is placed here for asynchronous commands.")

-- 
Romain Francoise <address@hidden> | The sea! the sea! the open
it's a miracle -- http://orebokech.com/ | sea! The blue, the fresh, the
                                        | ever free! --Bryan W. Procter




reply via email to

[Prev in Thread] Current Thread [Next in Thread]