From xemacs-m  Mon Mar 17 19:01:55 1997
Received: from susan.logware.de (root@susan.logware.de [192.109.80.15])
	by xemacs.org (8.8.5/8.8.5) with SMTP id TAA01288
	for <xemacs-beta@xemacs.org>; Mon, 17 Mar 1997 19:01:54 -0600 (CST)
Received: by susan.logware.de (Smail3.1.29.1)
	  id <m0w6nHj-000024C>; Tue, 18 Mar 97 02:01 MET
Message-Id: <m0w6nHj-000024C@susan.logware.de>
Date: Tue, 18 Mar 97 02:01 MET
From: Michael Diers <mdiers@logware.de>
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
To: XEmacs beta list <xemacs-beta@xemacs.org>
Subject: [19.15-b99] patch: pcl-cvs.el

This fixes a wee problem in pcl-cvs when encountering patch failure
messages on stderr. One should simply ignore these since CVS will
later go fetch the whole file.

-Michael


--- pcl-cvs.el--dist	Tue Mar 18 01:30:45 1997
+++ pcl-cvs.el	Tue Mar 18 01:32:33 1997
@@ -1452,6 +1452,12 @@
 	  (error "Remote CVS: %s"
 		 (buffer-substring (match-beginning 0) (match-end 0))))
 
+         ;; Remote CVS patch failure. Ignore.
+
+	 ((looking-at
+	   "^[0-9]+ out of [0-9]+ hunks failed--saving rejects to .+$")
+	  (forward-line 1))
+
 	 ;; Empty line.  Probably inserted by mistake by user (or developer :-)
 	 ;; Ignore.

