aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2007-10-11 22:21:17 +0000
committerDan Nicolaescu2007-10-11 22:21:17 +0000
commitf509e245556130718af0e18be54ca194ee0b5430 (patch)
tree34dce95a15e80941f88365495e26bc874d5fd91d
parentf5950176231a19c7031807c32bee6e9ddadd2010 (diff)
downloademacs-f509e245556130718af0e18be54ca194ee0b5430.tar.gz
emacs-f509e245556130718af0e18be54ca194ee0b5430.zip
* vc.el (vc-deduce-fileset): Delete unused code.
(vc-next-action): Fix typos.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/vc.el9
2 files changed, 9 insertions, 5 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index c1ac13dfff7..3faf83b6e61 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12007-10-11 Dan Nicolaescu <dann@ics.uci.edu>
2
3 * vc.el (vc-deduce-fileset): Delete unused code.
4 (vc-next-action): Fix typos.
5
12007-10-11 Juanma Barranquero <lekktu@gmail.com> 62007-10-11 Juanma Barranquero <lekktu@gmail.com>
2 7
3 * bs.el (bs--mark-unmark): New function. 8 * bs.el (bs--mark-unmark): New function.
diff --git a/lisp/vc.el b/lisp/vc.el
index 9c2a5097498..77d85352a77 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -1288,7 +1288,6 @@ Otherwise, throw an error.
1288 ;; confirmation prompts. 1288 ;; confirmation prompts.
1289 (allow-directory-wildcard 1289 (allow-directory-wildcard
1290 (progn 1290 (progn
1291 (setq marked (list default-directory))
1292 (message "All version-controlled files below %s selected." 1291 (message "All version-controlled files below %s selected."
1293 default-directory) 1292 default-directory)
1294 (list default-directory))) 1293 (list default-directory)))
@@ -1441,7 +1440,7 @@ merge in the changes into your working copy."
1441 (if (not (file-writable-p file)) 1440 (if (not (file-writable-p file))
1442 (progn 1441 (progn
1443 ;; Make the file+buffer read-write. 1442 ;; Make the file+buffer read-write.
1444 (unless (y-or-no-p (format "%s is edited but read-only; make it writable and continue?" file)) 1443 (unless (y-or-n-p (format "%s is edited but read-only; make it writable and continue?" file))
1445 (error "Aborted")) 1444 (error "Aborted"))
1446 (set-file-modes file (logior (file-modes file) 128)) 1445 (set-file-modes file (logior (file-modes file) 128))
1447 (let ((visited (get-file-buffer file))) 1446 (let ((visited (get-file-buffer file)))
@@ -1481,9 +1480,9 @@ merge in the changes into your working copy."
1481 ((stringp state) 1480 ((stringp state)
1482 (let ((revision 1481 (let ((revision
1483 (if verbose 1482 (if verbose
1484 (read-string "Revision to steal: ") 1483 (read-string "Version to steal: ")
1485 (vc-working-revision file)))) 1484 (vc-workfile-version file))))
1486 (mapc (lambda (file) (vc-steal-lock file revision) state) files))) 1485 (mapc (lambda (file) (vc-steal-lock file version state) files))))
1487 ;; needs-patch 1486 ;; needs-patch
1488 ((eq state 'needs-patch) 1487 ((eq state 'needs-patch)
1489 (dolist (file files) 1488 (dolist (file files)