diff options
| author | Stefan Monnier | 2000-09-29 02:19:10 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2000-09-29 02:19:10 +0000 |
| commit | ad710d9f2458f3c173e5e70bc1b85d690e2cd25e (patch) | |
| tree | af1915f74d8071afc9dc4a93839173b613f047fe | |
| parent | cc7e4da0a580a2a52d35cd50e0b98f2139528c1d (diff) | |
| download | emacs-ad710d9f2458f3c173e5e70bc1b85d690e2cd25e.tar.gz emacs-ad710d9f2458f3c173e5e70bc1b85d690e2cd25e.zip | |
(cvs-status-entry-leader-re): Minor fix.
| -rw-r--r-- | lisp/cvs-status.el | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/cvs-status.el b/lisp/cvs-status.el index 9cc92e82818..bed3b618520 100644 --- a/lisp/cvs-status.el +++ b/lisp/cvs-status.el | |||
| @@ -5,7 +5,7 @@ | |||
| 5 | ;; Author: Stefan Monnier <monnier@cs.yale.edu> | 5 | ;; Author: Stefan Monnier <monnier@cs.yale.edu> |
| 6 | ;; Keywords: pcl-cvs cvs status tree | 6 | ;; Keywords: pcl-cvs cvs status tree |
| 7 | ;; Version: $Name: $ | 7 | ;; Version: $Name: $ |
| 8 | ;; Revision: $Id: cvs-status.el,v 1.5 2000/08/06 09:18:02 gerd Exp $ | 8 | ;; Revision: $Id: cvs-status.el,v 1.6 2000/08/16 20:46:32 monnier Exp $ |
| 9 | 9 | ||
| 10 | ;; This file is part of GNU Emacs. | 10 | ;; This file is part of GNU Emacs. |
| 11 | 11 | ||
| @@ -66,7 +66,8 @@ | |||
| 66 | "Hook run at the end of `cvs-status-mode'.") | 66 | "Hook run at the end of `cvs-status-mode'.") |
| 67 | 67 | ||
| 68 | (defconst cvs-status-tags-leader-re "^ Existing Tags:$") | 68 | (defconst cvs-status-tags-leader-re "^ Existing Tags:$") |
| 69 | (defconst cvs-status-entry-leader-re "^File: \\(\\S-+\\)\\s-+Status: \\(.+\\)$") | 69 | (defconst cvs-status-entry-leader-re |
| 70 | "^File:\\s-+\\(?:no file \\)?\\(.*\\S-\\)\\s-+Status: \\(.+\\)$") | ||
| 70 | (defconst cvs-status-dir-re "^cvs[.ex]* [a-z]+: Examining \\(.+\\)$") | 71 | (defconst cvs-status-dir-re "^cvs[.ex]* [a-z]+: Examining \\(.+\\)$") |
| 71 | (defconst cvs-status-rev-re "[0-9][.0-9]*\\.[.0-9]*[0-9]") | 72 | (defconst cvs-status-rev-re "[0-9][.0-9]*\\.[.0-9]*[0-9]") |
| 72 | (defconst cvs-status-tag-re "[ \t]\\([a-zA-Z][^ \t\n.]*\\)") | 73 | (defconst cvs-status-tag-re "[ \t]\\([a-zA-Z][^ \t\n.]*\\)") |
| @@ -505,6 +506,9 @@ Optional prefix ARG chooses between two representations." | |||
| 505 | 506 | ||
| 506 | ;;; Change Log: | 507 | ;;; Change Log: |
| 507 | ;; $Log: cvs-status.el,v $ | 508 | ;; $Log: cvs-status.el,v $ |
| 509 | ;; Revision 1.6 2000/08/16 20:46:32 monnier | ||
| 510 | ;; *** empty log message *** | ||
| 511 | ;; | ||
| 508 | ;; Revision 1.5 2000/08/06 09:18:02 gerd | 512 | ;; Revision 1.5 2000/08/06 09:18:02 gerd |
| 509 | ;; Use `nth' instead of `first', `second', and `third'. | 513 | ;; Use `nth' instead of `first', `second', and `third'. |
| 510 | ;; | 514 | ;; |