summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog9
-rw-r--r--lisp/pcvs.el2
-rw-r--r--lisp/smerge-mode.el8
-rw-r--r--lisp/vc-arch.el2
-rw-r--r--lisp/vc-svn.el2
-rw-r--r--lisp/vc.el29
6 files changed, 46 insertions, 6 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 3e9da0593db..7c63ad22bef 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,12 @@
+2008-01-14 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * smerge-mode.el (smerge-auto): New function.
+ * vc-svn.el (vc-svn-find-file-hook):
+ * vc-arch.el (vc-arch-find-file-hook):
+ * pcvs.el (cvs-revert-if-needed):
+ * vc.el (vc-maybe-resolve-conflicts): Use it instead of vc-mode.
+ (top-level): Add a Todo list.
+
2008-01-13 Dan Nicolaescu <dann@ics.uci.edu>
* vc.el (vc-update): Resolve conflicts if necessary instead of
diff --git a/lisp/pcvs.el b/lisp/pcvs.el
index c4a7f67d930..401962872a2 100644
--- a/lisp/pcvs.el
+++ b/lisp/pcvs.el
@@ -2311,7 +2311,7 @@ this file, or a list of arguments to send to the program."
;; do want to reset the mode for VC, so we do it explicitly.
(vc-find-file-hook)
(when (eq (cvs-fileinfo->type fileinfo) 'CONFLICT)
- (smerge-mode 1))))))))
+ (smerge-auto))))))))
(defun cvs-change-cvsroot (newroot)
diff --git a/lisp/smerge-mode.el b/lisp/smerge-mode.el
index b72107eb6c3..fe7d06e537b 100644
--- a/lisp/smerge-mode.el
+++ b/lisp/smerge-mode.el
@@ -1021,6 +1021,14 @@ buffer names."
(unless smerge-mode
(smerge-remove-props (point-min) (point-max))))
+;;;###autoload
+(defun smerge-auto ()
+ "Turn on `smerge-mode' and move point to first conflict marker.
+If no conflict maker is found, turn off `smerge-mode'."
+ (smerge-mode 1)
+ (condition-case nil
+ (smerge-next)
+ (error (smerge-auto-leave))))
(provide 'smerge-mode)
diff --git a/lisp/vc-arch.el b/lisp/vc-arch.el
index 284fe032a25..97c99dd8193 100644
--- a/lisp/vc-arch.el
+++ b/lisp/vc-arch.el
@@ -360,7 +360,7 @@ Return non-nil if FILE is unchanged."
(if (not (re-search-forward "^<<<<<<< " nil t))
;; The .rej file is obsolete.
(condition-case nil (delete-file rej) (error nil))
- (smerge-mode 1)
+ (smerge-auto)
(add-hook 'after-save-hook
'vc-arch-delete-rej-if-obsolete nil t)
(message "There are unresolved conflicts in this file")))
diff --git a/lisp/vc-svn.el b/lisp/vc-svn.el
index e387b57d4fe..16e10edc202 100644
--- a/lisp/vc-svn.el
+++ b/lisp/vc-svn.el
@@ -551,7 +551,7 @@ and that it passes `vc-svn-global-switches' to it before FLAGS."
(re-search-forward "^<<<<<<< " nil t))
;; There are conflict markers.
(progn
- (smerge-mode 1)
+ (smerge-auto)
(add-hook 'after-save-hook 'vc-svn-resolve-when-done nil t))
;; There are no conflict markers. This is problematic: maybe it means
;; the conflict has been resolved and we should immediately call "svn
diff --git a/lisp/vc.el b/lisp/vc.el
index 5006af37ec5..cc2627bb792 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -7,8 +7,6 @@
;; Maintainer: Andre Spiegel <spiegel@gnu.org>
;; Keywords: tools
-;; $Id$
-
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
@@ -522,6 +520,31 @@
;; to your backend and which does not map to any of the VC generic
;; concepts.
+;;; Todo:
+
+;; - Make vc-checkin avoid reverting the buffer if has not changed
+;; after the checkin. Comparing (md5 BUFFER) to (md5 FILE) should
+;; be enough.
+;;
+;; - vc-update/vc-merge should deal with VC systems that don't
+;; update/merge on a file basis, but on a whole repository basis.
+;;
+;; - vc-register should register multiple files at a time. The
+;; `register' backend function already supports that.
+;;
+;; - the *VC-log* buffer needs font-locking.
+;;
+;; - make it easier to write logs, maybe C-x 4 a should add to the log
+;; buffer if there's one instead of the ChangeLog.
+;;
+;; - deal with push/pull operations.
+;;
+;; - decide if vc-status should replace vc-dired.
+;;
+;; - vc-status should be made asynchronous.
+;;
+;; - vc-status needs a menu, mouse bindings and some color bling.
+
;;; Code:
(require 'vc-hooks)
@@ -2222,7 +2245,7 @@ See Info node `Merging'."
(defun vc-maybe-resolve-conflicts (file status &optional name-A name-B)
(vc-resynch-buffer file t (not (buffer-modified-p)))
(if (zerop status) (message "Merge successful")
- (smerge-mode 1)
+ (smerge-auto)
(message "File contains conflicts.")))
;;;###autoload