aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndré Spiegel2003-02-19 19:00:51 +0000
committerAndré Spiegel2003-02-19 19:00:51 +0000
commit2807bd919427abf2c4e09d6f89961a2583eb5cf2 (patch)
treed01295b85bf0311fba7a607a15d8151a574c9294
parent642393416300a40d5ee7181a65b252fef1bb0196 (diff)
downloademacs-2807bd919427abf2c4e09d6f89961a2583eb5cf2.tar.gz
emacs-2807bd919427abf2c4e09d6f89961a2583eb5cf2.zip
(vc-binary-assoc, vc-binary-suffixes): Removed; these were
accidentally left over.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/vc.el8
2 files changed, 6 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index a14726f115f..f7abcf266e8 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12003-02-19 Andre Spiegel <spiegel@gnu.org>
2
3 * vc.el (vc-binary-assoc, vc-binary-suffixes): Removed; these
4 were accidentally left over during the VC redesign in 2000.
5
12003-02-18 Juanma Barranquero <lektu@terra.es> 62003-02-18 Juanma Barranquero <lektu@terra.es>
2 7
3 * help-macro.el (make-help-screen): Fix character constant. 8 * 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 @@
6;; Maintainer: Andre Spiegel <spiegel@gnu.org> 6;; Maintainer: Andre Spiegel <spiegel@gnu.org>
7;; Keywords: tools 7;; Keywords: tools
8 8
9;; $Id: vc.el,v 1.348 2003/02/04 12:12:09 lektu Exp $ 9;; $Id: vc.el,v 1.349 2003/02/05 23:13:21 lektu Exp $
10 10
11;; This file is part of GNU Emacs. 11;; This file is part of GNU Emacs.
12 12
@@ -817,12 +817,6 @@ However, before executing BODY, find FILE, and after BODY, save buffer."
817 (if (not (vc-backend (buffer-file-name))) 817 (if (not (vc-backend (buffer-file-name)))
818 (error "File %s is not under version control" (buffer-file-name)))))) 818 (error "File %s is not under version control" (buffer-file-name))))))
819 819
820(defvar vc-binary-assoc nil)
821(defvar vc-binary-suffixes
822 (if (memq system-type '(ms-dos windows-nt))
823 '(".exe" ".com" ".bat" ".cmd" ".btm" "")
824 '("")))
825
826(defun vc-process-filter (p s) 820(defun vc-process-filter (p s)
827 "An alternative output filter for async process P. 821 "An alternative output filter for async process P.
828The only difference with the default filter is to insert S after markers." 822The only difference with the default filter is to insert S after markers."