From: André Spiegel Date: Wed, 19 Feb 2003 19:00:51 +0000 (+0000) Subject: (vc-binary-assoc, vc-binary-suffixes): Removed; these were X-Git-Tag: ttn-vms-21-2-B4~11125 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2807bd919427abf2c4e09d6f89961a2583eb5cf2;p=emacs.git (vc-binary-assoc, vc-binary-suffixes): Removed; these were accidentally left over. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index a14726f115f..f7abcf266e8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2003-02-19 Andre Spiegel + + * vc.el (vc-binary-assoc, vc-binary-suffixes): Removed; these + were accidentally left over during the VC redesign in 2000. + 2003-02-18 Juanma Barranquero * help-macro.el (make-help-screen): Fix character constant. diff --git a/lisp/vc.el b/lisp/vc.el index ddf67fc48bf..504ca762996 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -6,7 +6,7 @@ ;; Maintainer: Andre Spiegel ;; Keywords: tools -;; $Id: vc.el,v 1.348 2003/02/04 12:12:09 lektu Exp $ +;; $Id: vc.el,v 1.349 2003/02/05 23:13:21 lektu Exp $ ;; This file is part of GNU Emacs. @@ -817,12 +817,6 @@ However, before executing BODY, find FILE, and after BODY, save buffer." (if (not (vc-backend (buffer-file-name))) (error "File %s is not under version control" (buffer-file-name)))))) -(defvar vc-binary-assoc nil) -(defvar vc-binary-suffixes - (if (memq system-type '(ms-dos windows-nt)) - '(".exe" ".com" ".bat" ".cmd" ".btm" "") - '(""))) - (defun vc-process-filter (p s) "An alternative output filter for async process P. The only difference with the default filter is to insert S after markers."