aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThien-Thi Nguyen2003-09-29 14:40:28 +0000
committerThien-Thi Nguyen2003-09-29 14:40:28 +0000
commitd3ffebbcea391354b7bcc86386cc955467a3636f (patch)
tree14736d2afae7a864ad1903f376c28aa3d7841872
parent9074f5fbb83a1e892a45b5b01105dc297a9f0a42 (diff)
downloademacs-d3ffebbcea391354b7bcc86386cc955467a3636f.tar.gz
emacs-d3ffebbcea391354b7bcc86386cc955467a3636f.zip
(cvs-mode-unmark-up): Move to goal column when done.
-rw-r--r--lisp/pcvs.el9
1 files changed, 5 insertions, 4 deletions
diff --git a/lisp/pcvs.el b/lisp/pcvs.el
index fe19de66047..eea0e541043 100644
--- a/lisp/pcvs.el
+++ b/lisp/pcvs.el
@@ -1256,7 +1256,8 @@ they should always be unmarked."
1256 (let ((tin (ewoc-goto-prev cvs-cookies 1))) 1256 (let ((tin (ewoc-goto-prev cvs-cookies 1)))
1257 (when tin 1257 (when tin
1258 (setf (cvs-fileinfo->marked (ewoc-data tin)) nil) 1258 (setf (cvs-fileinfo->marked (ewoc-data tin)) nil)
1259 (ewoc-invalidate cvs-cookies tin)))) 1259 (ewoc-invalidate cvs-cookies tin)))
1260 (cvs-move-to-goal-column))
1260 1261
1261(defconst cvs-ignore-marks-alternatives 1262(defconst cvs-ignore-marks-alternatives
1262 '(("toggle-marks" . "/TM") 1263 '(("toggle-marks" . "/TM")
@@ -2043,14 +2044,14 @@ Returns a list of FIS that should be `cvs remove'd."
2043 (shrink-window-if-larger-than-buffer)))) 2044 (shrink-window-if-larger-than-buffer))))
2044 (if (not (or silent 2045 (if (not (or silent
2045 (unwind-protect 2046 (unwind-protect
2046 (yes-or-no-p 2047 (yes-or-no-p
2047 (let ((nfiles (length files)) 2048 (let ((nfiles (length files))
2048 (verb (if (eq filter 'undo) "Undo" "Delete"))) 2049 (verb (if (eq filter 'undo) "Undo" "Delete")))
2049 (if (= 1 nfiles) 2050 (if (= 1 nfiles)
2050 (format "%s file: \"%s\" ? " 2051 (format "%s file: \"%s\" ? "
2051 verb 2052 verb
2052 (cvs-fileinfo->file (car files))) 2053 (cvs-fileinfo->file (car files)))
2053 (format "%s %d files? " 2054 (format "%s %d files? "
2054 verb 2055 verb
2055 nfiles)))) 2056 nfiles))))
2056 (cvs-bury-buffer tmpbuf cvs-buffer)))) 2057 (cvs-bury-buffer tmpbuf cvs-buffer))))