diff options
| -rw-r--r-- | lisp/vc-rcs.el | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/vc-rcs.el b/lisp/vc-rcs.el index bda6aec95c2..0bda1e7c6aa 100644 --- a/lisp/vc-rcs.el +++ b/lisp/vc-rcs.el | |||
| @@ -405,7 +405,7 @@ whether to remove it." | |||
| 405 | (vc-switches 'RCS 'checkout))) | 405 | (vc-switches 'RCS 'checkout))) |
| 406 | 406 | ||
| 407 | (defun vc-rcs-checkout (file &optional editable rev) | 407 | (defun vc-rcs-checkout (file &optional editable rev) |
| 408 | "Retrieve a copy of a saved version of FILE. If FILE is a directory, | 408 | "Retrieve a copy of a saved version of FILE. If FILE is a directory, |
| 409 | attempt the checkout for all registered files beneath it." | 409 | attempt the checkout for all registered files beneath it." |
| 410 | (if (file-directory-p file) | 410 | (if (file-directory-p file) |
| 411 | (mapc 'vc-rcs-checkout (vc-expand-dirs (list file))) | 411 | (mapc 'vc-rcs-checkout (vc-expand-dirs (list file))) |
| @@ -471,7 +471,7 @@ attempt the checkout for all registered files beneath it." | |||
| 471 | (message "Checking out %s...done" file)))))) | 471 | (message "Checking out %s...done" file)))))) |
| 472 | 472 | ||
| 473 | (defun vc-rcs-rollback (files) | 473 | (defun vc-rcs-rollback (files) |
| 474 | "Roll back, undoing the most recent checkins of FILES. Directories are | 474 | "Roll back, undoing the most recent checkins of FILES. Directories are |
| 475 | expanded to all regidtered subfuiles in them." | 475 | expanded to all regidtered subfuiles in them." |
| 476 | (if (not files) | 476 | (if (not files) |
| 477 | (error "RCS backend doesn't support directory-level rollback.")) | 477 | (error "RCS backend doesn't support directory-level rollback.")) |
| @@ -508,7 +508,7 @@ expanded to all regidtered subfuiles in them." | |||
| 508 | (signal (car err) (cdr err))))))))) | 508 | (signal (car err) (cdr err))))))))) |
| 509 | 509 | ||
| 510 | (defun vc-rcs-revert (file &optional contents-done) | 510 | (defun vc-rcs-revert (file &optional contents-done) |
| 511 | "Revert FILE to the version it was based on. If FILE is a directory, | 511 | "Revert FILE to the version it was based on. If FILE is a directory, |
| 512 | revert all registered files beneath it." | 512 | revert all registered files beneath it." |
| 513 | (if (file-directory-p file) | 513 | (if (file-directory-p file) |
| 514 | (mapc 'vc-rcs-revert (vc-expand-dirs (list file))) | 514 | (mapc 'vc-rcs-revert (vc-expand-dirs (list file))) |
| @@ -792,7 +792,7 @@ systime, or nil if there is none. Also, reposition point." | |||
| 792 | 792 | ||
| 793 | (defun vc-rcs-create-tag (backend dir name branchp) | 793 | (defun vc-rcs-create-tag (backend dir name branchp) |
| 794 | (when branchp | 794 | (when branchp |
| 795 | (error "RCS backend %s does not support module branches.")) | 795 | (error "RCS backend %s does not support module branches" backend)) |
| 796 | (let ((result (vc-tag-precondition dir))) | 796 | (let ((result (vc-tag-precondition dir))) |
| 797 | (if (stringp result) | 797 | (if (stringp result) |
| 798 | (error "File %s is not up-to-date" result) | 798 | (error "File %s is not up-to-date" result) |