emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/vc-svn.el


From: Stefan Monnier
Subject: [Emacs-diffs] Changes to emacs/lisp/vc-svn.el
Date: Mon, 05 May 2003 12:13:04 -0400

Index: emacs/lisp/vc-svn.el
diff -c emacs/lisp/vc-svn.el:1.3 emacs/lisp/vc-svn.el:1.4
*** emacs/lisp/vc-svn.el:1.3    Mon May  5 12:06:10 2003
--- emacs/lisp/vc-svn.el        Mon May  5 12:13:04 2003
***************
*** 328,341 ****
    "Merge changes into current working copy of FILE.
  The changes are between FIRST-VERSION and SECOND-VERSION."
    (vc-svn-command nil 0 file
!                  "update" "-kk"
!                  (concat "-j" first-version)
!                  (concat "-j" second-version))
    (vc-file-setprop file 'vc-state 'edited)
    (with-current-buffer (get-buffer "*vc*")
      (goto-char (point-min))
!     (if (re-search-forward "conflicts during merge" nil t)
!         1                             ; signal error
        0)))                            ; signal success
  
  (defun vc-svn-merge-news (file)
--- 328,342 ----
    "Merge changes into current working copy of FILE.
  The changes are between FIRST-VERSION and SECOND-VERSION."
    (vc-svn-command nil 0 file
!                  "merge"
!                -r (if second-version
!                       (concat first-version ":" second-version)
!                     first-version))
    (vc-file-setprop file 'vc-state 'edited)
    (with-current-buffer (get-buffer "*vc*")
      (goto-char (point-min))
!     (if (looking-at "C  ")
!         1                             ; signal conflict
        0)))                            ; signal success
  
  (defun vc-svn-merge-news (file)




reply via email to

[Prev in Thread] Current Thread [Next in Thread]