Mercurial > emacs
changeset 45998:124e2db60fc7
(cvs-parse-table): Handle `nothing known about' with more care.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Mon, 24 Jun 2002 22:49:06 +0000 |
parents | 9ee4a7e22180 |
children | 6efc3066895b |
files | lisp/pcvs-parse.el |
diffstat | 1 files changed, 5 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/pcvs-parse.el Mon Jun 24 21:48:18 2002 +0000 +++ b/lisp/pcvs-parse.el Mon Jun 24 22:49:06 2002 +0000 @@ -1,10 +1,11 @@ ;;; pcvs-parse.el --- the CVS output parser -;; Copyright (C) 1991, 92, 93, 94, 95, 96, 97, 98, 99, 2000 Free Software Foundation, Inc. +;; Copyright (C) 1991,92,93,94,95,96,97,98,99,2000,2002 +;; Free Software Foundation, Inc. ;; Author: Stefan Monnier <monnier@cs.yale.edu> ;; Keywords: pcl-cvs -;; Revision: $Id: pcvs-parse.el,v 1.10 2001/09/24 16:39:23 monnier Exp $ +;; Revision: $Id: pcvs-parse.el,v 1.11 2002/03/17 20:48:14 monnier Exp $ ;; This file is part of GNU Emacs. @@ -354,7 +355,8 @@ ;; just a note (cvs-match "use '.+ commit' to \\sw+ th\\sw+ files? permanently$") ;; [add,status] followed by a more complete status description anyway - (cvs-match "nothing known about .*$") + (and (cvs-match "nothing known about \\(.*\\)$" (path 1)) + (cvs-parsed-fileinfo 'DEAD path 'trust)) ;; [update] problem with patch (cvs-match "checksum failure after patch to .*; will refetch$") (cvs-match "refetching unpatchable files$")