diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-06-22 20:24:42 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2002-06-22 20:24:42 +0000 |
commit | 6cfbaf462f82911f6c9cdd19d458483b6211da9d (patch) | |
tree | de7030919af05d97ab70cbbf9296c62327f8e8d8 /lisp/pcvs-defs.el | |
parent | 1030b26bcc03cc968021979b9754a93f91921e8d (diff) | |
download | emacs-6cfbaf462f82911f6c9cdd19d458483b6211da9d.tar.gz |
(cvs-version): Use cvs-program rather than "cvs".
Diffstat (limited to 'lisp/pcvs-defs.el')
-rw-r--r-- | lisp/pcvs-defs.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/pcvs-defs.el b/lisp/pcvs-defs.el index eaf8d5f78a0..94f5a75bbdc 100644 --- a/lisp/pcvs-defs.el +++ b/lisp/pcvs-defs.el @@ -4,7 +4,7 @@ ;; Author: Stefan Monnier <monnier@cs.yale.edu> ;; Keywords: pcl-cvs -;; Revision: $Id: pcvs-defs.el,v 1.16 2001/10/31 17:39:07 sds Exp $ +;; Revision: $Id: pcvs-defs.el,v 1.17 2001/12/20 18:42:44 pj Exp $ ;; This file is part of GNU Emacs. @@ -40,7 +40,7 @@ (defvar cvs-version (ignore-errors (with-temp-buffer - (call-process "cvs" nil t nil "-v") + (call-process cvs-program nil t nil "-v") (goto-char (point-min)) (when (re-search-forward "(CVS) \\([0-9]+\\)\\.\\([0-9]+\\)" nil t) (cons (string-to-number (match-string 1)) |