1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-02-06 20:49:33 +00:00

(vc-backend-merge-news): Fix regexp to also match P marker

from cvs update.
This commit is contained in:
Andreas Schwab 1999-08-27 07:59:22 +00:00
parent 55ac4d11d1
commit 051848e498

View File

@ -5,7 +5,7 @@
;; Author: Eric S. Raymond <esr@snark.thyrsus.com>
;; Maintainer: Andre Spiegel <spiegel@inf.fu-berlin.de>
;; $Id: vc.el,v 1.249 1999/06/15 17:40:09 kwzh Exp $
;; $Id: vc.el,v 1.250 1999/06/30 07:16:14 spiegel Exp schwab $
;; This file is part of GNU Emacs.
@ -2995,7 +2995,7 @@ THRESHOLD, nil otherwise"
(vc-file-setprop file 'vc-workfile-version (match-string 1)))
;; get file status
(if (re-search-forward
(concat "^\\(\\([CMU]\\) \\)?"
(concat "^\\(\\([CMUP]\\) \\)?"
(regexp-quote (file-name-nondirectory file))
"\\( already contains the differences between \\)?")
nil t)