diff options
author | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-05-12 18:14:51 +0000 |
---|---|---|
committer | Stefan Monnier <monnier@iro.umontreal.ca> | 2003-05-12 18:14:51 +0000 |
commit | 277e1cb381c3f2887d37b992addb290d481637ef (patch) | |
tree | 8402c2aba06b50169e90148e143839d1416bfcea /lisp/pcvs-parse.el | |
parent | 6adf3f60e4bb1f58865e49814b220ae3b99ca898 (diff) | |
download | emacs-277e1cb381c3f2887d37b992addb290d481637ef.tar.gz |
(cvs-parse-table): `New directory' messages include the full path.
Diffstat (limited to 'lisp/pcvs-parse.el')
-rw-r--r-- | lisp/pcvs-parse.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/pcvs-parse.el b/lisp/pcvs-parse.el index 2da541717f0..542069f7432 100644 --- a/lisp/pcvs-parse.el +++ b/lisp/pcvs-parse.el @@ -1,6 +1,6 @@ ;;; pcvs-parse.el --- the CVS output parser -;; Copyright (C) 1991,92,93,94,95,96,97,98,99,2000,2002 +;; Copyright (C) 1991,92,93,94,95,96,97,98,99,2000,02,2003 ;; Free Software Foundation, Inc. ;; Author: Stefan Monnier <monnier@cs.yale.edu> @@ -266,7 +266,7 @@ The remaining KEYS are passed directly to `cvs-create-fileinfo'." (and (cvs-match "New directory `\\(.*\\)' -- ignored$" (dir 1)) ;; (cvs-parsed-fileinfo 'MESSAGE " " (file-name-as-directory dir)) - (cvs-parsed-fileinfo '(NEED-UPDATE . NEW-DIR) dir)) + (cvs-parsed-fileinfo '(NEED-UPDATE . NEW-DIR) dir t)) ;; File removed, since it is removed (by third party) in repository. (and |