diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-02-10 21:50:00 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-02-10 21:50:00 +0000 |
commit | 389fe8885e51e6e294b7f87e4ebea4a2f74f3a43 (patch) | |
tree | 3f0331e023590eff327322671ad1051587d67c46 /lisp/pcvs-parse.el | |
parent | 1854d6e271b4284be33768a90be2dd9d2f081696 (diff) | |
download | emacs-389fe8885e51e6e294b7f87e4ebea4a2f74f3a43.tar.gz |
(cvs-parse-table): "no longer in repo" does not
make the file dead if we used the -n arg.
Diffstat (limited to 'lisp/pcvs-parse.el')
-rw-r--r-- | lisp/pcvs-parse.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/pcvs-parse.el b/lisp/pcvs-parse.el index 1b2db2eb18a..e7df8917ae0 100644 --- a/lisp/pcvs-parse.el +++ b/lisp/pcvs-parse.el @@ -5,7 +5,7 @@ ;; Author: Stefan Monnier <monnier@cs.yale.edu> ;; Keywords: pcl-cvs -;; Revision: $Id: pcvs-parse.el,v 1.13 2002/09/03 01:23:15 monnier Exp $ +;; Revision: $Id: pcvs-parse.el,v 1.14 2003/02/04 11:56:55 lektu Exp $ ;; This file is part of GNU Emacs. @@ -274,7 +274,8 @@ The remaining KEYS are passed directly to `cvs-create-fileinfo'." (cvs-or (cvs-match "warning: \\(.*\\) is not (any longer) pertinent$" (file 1)) (cvs-match "\\(.*\\) is no longer in the repository$" (file 1))) - (cvs-parsed-fileinfo 'DEAD file)) + (cvs-parsed-fileinfo + (if dont-change-disc '(NEED-UPDATE . REMOVED) 'DEAD) file)) ;; [add] (and |