diff options
| author | Dan Nicolaescu | 2008-05-02 03:48:17 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2008-05-02 03:48:17 +0000 |
| commit | 15ef1eaebb0b795b0d0c9456374cec56766cc8e3 (patch) | |
| tree | 6a7b53fe3d0f64d5571479fbf01e1a5b82161f10 | |
| parent | 80296236a06f41036b341622c5afe2cca4ec58b0 (diff) | |
| download | emacs-15ef1eaebb0b795b0d0c9456374cec56766cc8e3.tar.gz emacs-15ef1eaebb0b795b0d0c9456374cec56766cc8e3.zip | |
(vc-rcs-state): Fix typos.
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/vc-rcs.el | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 8b7d111d1cf..e9d6ded2cd8 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2008-05-02 Dan Nicolaescu <dann@ics.uci.edu> | 1 | 2008-05-02 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 2 | ||
| 3 | * vc-rcs.el (vc-rcs-state): Fix typos. | ||
| 4 | |||
| 3 | * vc.el (vc-register): Change argument order so that the prefix | 5 | * vc.el (vc-register): Change argument order so that the prefix |
| 4 | argument is assigned correctly. | 6 | argument is assigned correctly. |
| 5 | (vc-next-action, vc-dir-register): Update for the above change. | 7 | (vc-next-action, vc-dir-register): Update for the above change. |
diff --git a/lisp/vc-rcs.el b/lisp/vc-rcs.el index 0ef41557bb5..d6157171985 100644 --- a/lisp/vc-rcs.el +++ b/lisp/vc-rcs.el | |||
| @@ -118,7 +118,7 @@ For a description of possible values, see `vc-check-master-templates'." | |||
| 118 | 118 | ||
| 119 | (defun vc-rcs-state (file) | 119 | (defun vc-rcs-state (file) |
| 120 | "Implementation of `vc-state' for RCS." | 120 | "Implementation of `vc-state' for RCS." |
| 121 | (if (not (vc-rc-registered f)) | 121 | (if (not (vc-rcs-registered file)) |
| 122 | 'unregistered | 122 | 'unregistered |
| 123 | (or (boundp 'vc-rcs-headers-result) | 123 | (or (boundp 'vc-rcs-headers-result) |
| 124 | (and vc-consult-headers | 124 | (and vc-consult-headers |