# HG changeset patch # User Stefan Monnier # Date 970193950 0 # Node ID 5fbecb49e3868fdddacf04756a93d3c2ed807380 # Parent fa083a5fbf0c853f3c36042d4ce9a9c05938edf3 (cvs-status-entry-leader-re): Minor fix. diff -r fa083a5fbf0c -r 5fbecb49e386 lisp/cvs-status.el --- a/lisp/cvs-status.el Fri Sep 29 02:17:56 2000 +0000 +++ b/lisp/cvs-status.el Fri Sep 29 02:19:10 2000 +0000 @@ -5,7 +5,7 @@ ;; Author: Stefan Monnier ;; Keywords: pcl-cvs cvs status tree ;; Version: $Name: $ -;; Revision: $Id: cvs-status.el,v 1.5 2000/08/06 09:18:02 gerd Exp $ +;; Revision: $Id: cvs-status.el,v 1.6 2000/08/16 20:46:32 monnier Exp $ ;; This file is part of GNU Emacs. @@ -66,7 +66,8 @@ "Hook run at the end of `cvs-status-mode'.") (defconst cvs-status-tags-leader-re "^ Existing Tags:$") -(defconst cvs-status-entry-leader-re "^File: \\(\\S-+\\)\\s-+Status: \\(.+\\)$") +(defconst cvs-status-entry-leader-re + "^File:\\s-+\\(?:no file \\)?\\(.*\\S-\\)\\s-+Status: \\(.+\\)$") (defconst cvs-status-dir-re "^cvs[.ex]* [a-z]+: Examining \\(.+\\)$") (defconst cvs-status-rev-re "[0-9][.0-9]*\\.[.0-9]*[0-9]") (defconst cvs-status-tag-re "[ \t]\\([a-zA-Z][^ \t\n.]*\\)") @@ -505,6 +506,9 @@ ;;; Change Log: ;; $Log: cvs-status.el,v $ +;; Revision 1.6 2000/08/16 20:46:32 monnier +;; *** empty log message *** +;; ;; Revision 1.5 2000/08/06 09:18:02 gerd ;; Use `nth' instead of `first', `second', and `third'. ;;