1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-27 07:37:33 +00:00

(vc-binary-assoc, vc-binary-suffixes): Removed; these were

accidentally left over.
This commit is contained in:
André Spiegel 2003-02-19 19:00:51 +00:00
parent 6423934163
commit 2807bd9194
2 changed files with 6 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2003-02-19 Andre Spiegel <spiegel@gnu.org>
* 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 <lektu@terra.es>
* help-macro.el (make-help-screen): Fix character constant.

View File

@ -6,7 +6,7 @@
;; Maintainer: Andre Spiegel <spiegel@gnu.org>
;; 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."