diff options
| author | André Spiegel | 2001-10-29 12:21:26 +0000 |
|---|---|---|
| committer | André Spiegel | 2001-10-29 12:21:26 +0000 |
| commit | ecd50f6599580683141373ab23344569ff70d0a5 (patch) | |
| tree | 02b115b08502b2fbc21b9670fd7d31b4a1b6496a | |
| parent | 0ccfdad267f742f5fffd0fa9b6415d0d0a2b1bda (diff) | |
| download | emacs-ecd50f6599580683141373ab23344569ff70d0a5.tar.gz emacs-ecd50f6599580683141373ab23344569ff70d0a5.zip | |
Mention vc-*-switches in backend API documentation.
(vc-annotate): Adapt doc string to recent change.
| -rw-r--r-- | lisp/vc.el | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index cb9639cccb1..63ba023a405 100644 --- a/lisp/vc.el +++ b/lisp/vc.el | |||
| @@ -6,7 +6,7 @@ | |||
| 6 | ;; Maintainer: Andre Spiegel <spiegel@gnu.org> | 6 | ;; Maintainer: Andre Spiegel <spiegel@gnu.org> |
| 7 | ;; Keywords: tools | 7 | ;; Keywords: tools |
| 8 | 8 | ||
| 9 | ;; $Id: vc.el,v 1.314 2001/10/22 07:54:03 spiegel Exp $ | 9 | ;; $Id: vc.el,v 1.315 2001/10/22 12:13:29 spiegel Exp $ |
| 10 | 10 | ||
| 11 | ;; This file is part of GNU Emacs. | 11 | ;; This file is part of GNU Emacs. |
| 12 | 12 | ||
| @@ -167,6 +167,8 @@ | |||
| 167 | ;; | 167 | ;; |
| 168 | ;; Register FILE in this backend. Optionally, an initial revision REV | 168 | ;; Register FILE in this backend. Optionally, an initial revision REV |
| 169 | ;; and an initial description of the file, COMMENT, may be specified. | 169 | ;; and an initial description of the file, COMMENT, may be specified. |
| 170 | ;; The implementation should pass the value of vc-register-switches | ||
| 171 | ;; to the backend command. | ||
| 170 | ;; | 172 | ;; |
| 171 | ;; - responsible-p (file) | 173 | ;; - responsible-p (file) |
| 172 | ;; | 174 | ;; |
| @@ -198,7 +200,8 @@ | |||
| 198 | ;; | 200 | ;; |
| 199 | ;; Commit changes in FILE to this backend. If REV is non-nil, that | 201 | ;; Commit changes in FILE to this backend. If REV is non-nil, that |
| 200 | ;; should become the new revision number. COMMENT is used as a | 202 | ;; should become the new revision number. COMMENT is used as a |
| 201 | ;; check-in comment. | 203 | ;; check-in comment. The implementation should pass the value of |
| 204 | ;; vc-checkin-switches to the backend command. | ||
| 202 | ;; | 205 | ;; |
| 203 | ;; * checkout (file &optional editable rev destfile) | 206 | ;; * checkout (file &optional editable rev destfile) |
| 204 | ;; | 207 | ;; |
| @@ -208,7 +211,8 @@ | |||
| 208 | ;; is the revision to check out (default is current workfile version); | 211 | ;; is the revision to check out (default is current workfile version); |
| 209 | ;; if REV is the empty string, that means to check out the head of the | 212 | ;; if REV is the empty string, that means to check out the head of the |
| 210 | ;; trunk. If optional arg DESTFILE is given, it is an alternate | 213 | ;; trunk. If optional arg DESTFILE is given, it is an alternate |
| 211 | ;; filename to write the contents to. | 214 | ;; filename to write the contents to. The implementation should |
| 215 | ;; pass the value of vc-checkout-switches to the backend command. | ||
| 212 | ;; | 216 | ;; |
| 213 | ;; * revert (file &optional contents-done) | 217 | ;; * revert (file &optional contents-done) |
| 214 | ;; | 218 | ;; |
| @@ -3005,11 +3009,10 @@ With a prefix argument, this command asks two questions in the | |||
| 3005 | minibuffer. First, you may enter a version number; then the buffer | 3009 | minibuffer. First, you may enter a version number; then the buffer |
| 3006 | displays and annotates that version instead of the current version | 3010 | displays and annotates that version instead of the current version |
| 3007 | \(type RET in the minibuffer to leave that default unchanged). Then, | 3011 | \(type RET in the minibuffer to leave that default unchanged). Then, |
| 3008 | you are prompted for a stretch factor for the time scale. This makes | 3012 | you are prompted for the time span in days which the color range |
| 3009 | the color range cover a time span longer or shorter than the default | 3013 | should cover. For example, a time span of 20 days means that changes |
| 3010 | of one year. For example, a factor of 0.1 means that the range from | 3014 | over the past 20 days are shown in red to blue, according to their |
| 3011 | red to blue stands for the past 36 days only, and everything that is | 3015 | age, and everything that is older than that is shown in blue. |
| 3012 | older than that is shown in blue. | ||
| 3013 | 3016 | ||
| 3014 | Customization variables: | 3017 | Customization variables: |
| 3015 | 3018 | ||