diff options
| author | Dan Nicolaescu | 2009-12-28 11:20:02 -0800 |
|---|---|---|
| committer | Dan Nicolaescu | 2009-12-28 11:20:02 -0800 |
| commit | ac859983d70c71997a295239e2bc917130a6bd97 (patch) | |
| tree | f6151907e059b3ce42c65b5abb58e5c3d3fea659 | |
| parent | 2592ab767ade2ebb41b6734356b07d7f12c2fba6 (diff) | |
| download | emacs-ac859983d70c71997a295239e2bc917130a6bd97.tar.gz emacs-ac859983d70c71997a295239e2bc917130a6bd97.zip | |
* vc-rcs.el (vc-rcs-register): Fix registering a specific version.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/vc-rcs.el | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d3e12317611..a454f132733 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2009-12-28 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * vc-rcs.el (vc-rcs-register): Fix registering a specific version. | ||
| 4 | |||
| 3 | * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp. | 5 | * vc-bzr.el (vc-bzr-log-view-mode): Fix short log regexp. |
| 4 | 6 | ||
| 5 | 2009-12-28 Juanma Barranquero <lekktu@gmail.com> | 7 | 2009-12-28 Juanma Barranquero <lekktu@gmail.com> |
diff --git a/lisp/vc-rcs.el b/lisp/vc-rcs.el index e5b624db945..2f03a00b451 100644 --- a/lisp/vc-rcs.el +++ b/lisp/vc-rcs.el | |||
| @@ -277,6 +277,8 @@ to the RCS command. | |||
| 277 | Automatically retrieve a read-only version of the file with keywords | 277 | Automatically retrieve a read-only version of the file with keywords |
| 278 | expanded if `vc-keep-workfiles' is non-nil, otherwise, delete the workfile." | 278 | expanded if `vc-keep-workfiles' is non-nil, otherwise, delete the workfile." |
| 279 | (let (subdir name) | 279 | (let (subdir name) |
| 280 | ;; When REV is specified, we need to force using "-t-". | ||
| 281 | (when rev (unless comment (setq comment ""))) | ||
| 280 | (dolist (file files) | 282 | (dolist (file files) |
| 281 | (and (not (file-exists-p | 283 | (and (not (file-exists-p |
| 282 | (setq subdir (expand-file-name "RCS" | 284 | (setq subdir (expand-file-name "RCS" |