diff options
author | Dan Nicolaescu <dann@ics.uci.edu> | 2008-10-27 07:21:43 +0000 |
---|---|---|
committer | Dan Nicolaescu <dann@ics.uci.edu> | 2008-10-27 07:21:43 +0000 |
commit | 13ad74578883f15b5712890c627710583ed7b2c7 (patch) | |
tree | bd8bee62e356d705cd1e93f8aaa8db1482d0129a /lisp/vc.el | |
parent | 4ff029f613a6f9a4bd54bf3b3e7763c25a510045 (diff) | |
download | emacs-13ad74578883f15b5712890c627710583ed7b2c7.tar.gz |
* vc.el: Rename VC methods that were missed when vc-status was
renamed to vc-dir.
* vc-svn.el (vc-svn-dir-extra-headers): Rename from
vc-svn-status-extra-headers.
* vc-hg.el (vc-hg-dir-printer): Rename from vc-hg-status-printer.
(vc-hg-dir-extra-header): Rename from vc-hg-status-extra-headers.
* vc-git.el (vc-git-dir-printer): Rename from vc-dir-status-printer.
(vc-git-dir-extra-headers): Rename from vc-git-status-extra-headers.
* vc-dir.el (vc-dir-mode): Use vc-dir-printer instead of
vc-dir-status-printer.
(vc-dir-headers): Use `dir-extra-headers' instead of
`status-extra-headers'
(vc-dir-printer): Rename from vc-dir-status-printer.
(vc-default-dir-extra-headers): Rename from
vc-default-status-extra-headers.
* vc-cvs.el (vc-cvs-dir-extra-headers): Rename from
vc-cvs-status-extra-headers.
Diffstat (limited to 'lisp/vc.el')
-rw-r--r-- | lisp/vc.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/vc.el b/lisp/vc.el index 35e846dd28a..a6ef181c51b 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -159,8 +159,8 @@ ;; and then do a (funcall UPDATE-FUNCTION RESULT nil) ;; when all the results have been computed. ;; To provide more backend specific functionality for `vc-dir' -;; the following functions might be needed: `status-extra-headers', -;; `status-printer', `extra-status-menu' and `dir-status-files'. +;; the following functions might be needed: `dir-extra-headers', +;; `dir-printer', `extra-dir-menu' and `dir-status-files'. ;; ;; - dir-status-files (dir files default-state update-function) ;; @@ -170,11 +170,11 @@ ;; files. If not provided, the default is to consider that the files ;; are in DEFAULT-STATE. ;; -;; - status-extra-headers (dir) +;; - dir-extra-headers (dir) ;; ;; Return a string that will be added to the *vc-dir* buffer header. ;; -;; - status-printer (fileinfo) +;; - dir-printer (fileinfo) ;; ;; Pretty print the `vc-dir-fileinfo' FILEINFO. ;; If a backend needs to show more information than the default FILE @@ -527,7 +527,7 @@ ;; to your backend and which does not map to any of the VC generic ;; concepts. ;; -;; - extra-status-menu () +;; - extra-dir-menu () ;; ;; Return a menu keymap, the items in the keymap will appear at the ;; end of the VC Status menu. The goal is to allow backends to |