diff options
| author | Stefan Monnier | 2001-09-24 16:42:14 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2001-09-24 16:42:14 +0000 |
| commit | 3911563ae9add2f1cd34361fd70e7302df221fe1 (patch) | |
| tree | c288867a753d56783904bf842da3f24d48fe85e5 | |
| parent | 79e954d0acf68c827469b467786083f6d5c3f365 (diff) | |
| download | emacs-3911563ae9add2f1cd34361fd70e7302df221fe1.tar.gz emacs-3911563ae9add2f1cd34361fd70e7302df221fe1.zip | |
(cvs-parse-commit): Expand the file name before passing it to VC.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/pcvs-parse.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 91a73612246..c63ce9e6fe4 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2001-09-24 Stefan Monnier <monnier@cs.yale.edu> | 1 | 2001-09-24 Stefan Monnier <monnier@cs.yale.edu> |
| 2 | 2 | ||
| 3 | * pcvs-parse.el (cvs-parse-commit): Expand the file name before | ||
| 4 | passing it to VC. | ||
| 5 | |||
| 3 | * vc-hooks.el (vc-delete-automatic-version-backups): Handle the | 6 | * vc-hooks.el (vc-delete-automatic-version-backups): Handle the |
| 4 | case where the file is relative. | 7 | case where the file is relative. |
| 5 | 8 | ||
diff --git a/lisp/pcvs-parse.el b/lisp/pcvs-parse.el index 7199bd005d8..56316545b8e 100644 --- a/lisp/pcvs-parse.el +++ b/lisp/pcvs-parse.el | |||
| @@ -4,7 +4,7 @@ | |||
| 4 | 4 | ||
| 5 | ;; Author: Stefan Monnier <monnier@cs.yale.edu> | 5 | ;; Author: Stefan Monnier <monnier@cs.yale.edu> |
| 6 | ;; Keywords: pcl-cvs | 6 | ;; Keywords: pcl-cvs |
| 7 | ;; Revision: $Id: pcvs-parse.el,v 1.8 2001/07/16 07:46:48 pj Exp $ | 7 | ;; Revision: $Id: pcvs-parse.el,v 1.9 2001/09/22 20:22:34 monnier Exp $ |
| 8 | 8 | ||
| 9 | ;; This file is part of GNU Emacs. | 9 | ;; This file is part of GNU Emacs. |
| 10 | 10 | ||
| @@ -486,7 +486,7 @@ The remaining KEYS are passed directly to `cvs-create-fileinfo'." | |||
| 486 | (cvs-match "done$") | 486 | (cvs-match "done$") |
| 487 | (progn | 487 | (progn |
| 488 | ;; Try to remove the temp files used by VC. | 488 | ;; Try to remove the temp files used by VC. |
| 489 | (vc-delete-automatic-version-backups path) | 489 | (vc-delete-automatic-version-backups (expand-file-name path)) |
| 490 | ;; it's important here not to rely on the default directory management | 490 | ;; it's important here not to rely on the default directory management |
| 491 | ;; because `cvs commit' might begin by a series of Examining messages | 491 | ;; because `cvs commit' might begin by a series of Examining messages |
| 492 | ;; so the processing of the actual checkin messages might begin with | 492 | ;; so the processing of the actual checkin messages might begin with |