]> git.eshelyaron.com Git - emacs.git/commitdiff
(cvs-parse-table): Accept the new `...' format for removed files.
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 17 Aug 2006 14:53:09 +0000 (14:53 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 17 Aug 2006 14:53:09 +0000 (14:53 +0000)
lisp/ChangeLog
lisp/pcvs-parse.el

index d703ee7cbbabc1ef8421278cca1491e87e4d6656..4234fdc3d445d948cb743aa1a8d202e6db2621fd 100644 (file)
@@ -1,3 +1,8 @@
+2006-08-17  Stefan Monnier  <monnier@iro.umontreal.ca>
+
+       * pcvs-parse.el (cvs-parse-table): Accept the new `...' format for
+       removed files.
+
 2006-08-17  Nick Roberts  <nickrob@snap.net.nz>
 
        * progmodes/gdb-ui.el (gdb-locals-watch-map)
index 0193939606cb686e818082d6b1f1fe667e426c56..bd4931265324229594f103a8d6c58b417bd1afc5 100644 (file)
@@ -285,7 +285,8 @@ The remaining KEYS are passed directly to `cvs-create-fileinfo'."
        (and
        (cvs-or
         (cvs-match "warning: \\(.*\\) is not (any longer) pertinent$" (file 1))
-        (cvs-match "\\(.*\\) is no longer in the repository$" (file 1)))
+        (cvs-match "`\\(.*\\)' is no longer in the repository$" (file 1))
+         (cvs-match "\\(.*\\) is no longer in the repository$" (file 1)))
        (cvs-parsed-fileinfo
         (if dont-change-disc '(NEED-UPDATE . REMOVED) 'DEAD) file))