summaryrefslogtreecommitdiff
path: root/editors/emacs21/files/patch-lisp:vc-hooks.el
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2004-03-21 07:39:49 +0000
committerKris Kennaway <kris@FreeBSD.org>2004-03-21 07:39:49 +0000
commit131cd97388c78909b13a26c3ce289bbf3c007b7f (patch)
treed22f5aaa16546b9e90fc0a35df15ff1dc17c67e9 /editors/emacs21/files/patch-lisp:vc-hooks.el
parentUpdate pkg-message to match the current state of the default version (diff)
Move the ancient emacs 19.x port from editors/emacs to
editors/emacs19, and update the main emacs port to 21.x by copying from editors/emacs21. Retire the editors/emacs21 port. PR: ports/24983
Notes
Notes: svn path=/head/; revision=104813
Diffstat (limited to 'editors/emacs21/files/patch-lisp:vc-hooks.el')
-rw-r--r--editors/emacs21/files/patch-lisp:vc-hooks.el24
1 files changed, 0 insertions, 24 deletions
diff --git a/editors/emacs21/files/patch-lisp:vc-hooks.el b/editors/emacs21/files/patch-lisp:vc-hooks.el
deleted file mode 100644
index 8675c85f9e37..000000000000
--- a/editors/emacs21/files/patch-lisp:vc-hooks.el
+++ /dev/null
@@ -1,24 +0,0 @@
---- lisp/vc-hooks.el.orig Mon Nov 12 23:37:38 2001
-+++ lisp/vc-hooks.el Tue Nov 13 12:56:08 2001
-@@ -475,10 +475,9 @@
- (if regexp
- (concat (regexp-quote (file-name-nondirectory file))
- "\\.~[0-9.]+" (unless manual "\\.") "~")
-- (expand-file-name (concat (file-name-nondirectory file)
-- ".~" (or rev (vc-workfile-version file))
-- (unless manual ".") "~")
-- (file-name-directory file))))
-+ (concat (make-backup-file-name-1 file)
-+ ".~" (or rev (vc-workfile-version file))
-+ (unless manual ".") "~")))
-
- (defun vc-delete-automatic-version-backups (file)
- "Delete all existing automatic version backups for FILE."
-@@ -509,6 +508,7 @@
- (vc-up-to-date-p file)
- (eq (vc-checkout-model file) 'implicit)
- (vc-call make-version-backups-p file)
-+ vc-make-backup-files
- (vc-make-version-backup file))))
-
- (defun vc-after-save ()