aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/vc-git.el
diff options
context:
space:
mode:
authorEric S. Raymond2007-10-10 19:39:23 +0000
committerEric S. Raymond2007-10-10 19:39:23 +0000
commit5b5afd508a5ca3643e1cd435fa60d197b7c2f9f7 (patch)
tree585cf39728175c17a483204b38d1a3bac42a0127 /lisp/vc-git.el
parenta888f521f0d727300f821ff346375d357ba1e2c7 (diff)
downloademacs-5b5afd508a5ca3643e1cd435fa60d197b7c2f9f7.tar.gz
emacs-5b5afd508a5ca3643e1cd435fa60d197b7c2f9f7.zip
Carry through today's big terminology change to a few places where I
missed it in the back ends.
Diffstat (limited to 'lisp/vc-git.el')
-rw-r--r--lisp/vc-git.el16
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index 6ea04a1e45b..4bf6506dcb1 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -77,11 +77,11 @@
77;; wouldn't be identified as a merge by git, 77;; wouldn't be identified as a merge by git,
78;; so it's probably not a good idea. 78;; so it's probably not a good idea.
79;; - merge-news (file) see `merge' 79;; - merge-news (file) see `merge'
80;; - steal-lock (file &optional version) NOT NEEDED 80;; - steal-lock (file &optional revision) NOT NEEDED
81;; HISTORY FUNCTIONS 81;; HISTORY FUNCTIONS
82;; * print-log (files &optional buffer) OK 82;; * print-log (files &optional buffer) OK
83;; - log-view-mode () OK 83;; - log-view-mode () OK
84;; - show-log-entry (version) NOT NEEDED, DEFAULT IS GOOD 84;; - show-log-entry (revision) NOT NEEDED, DEFAULT IS GOOD
85;; - wash-log (file) COULD BE SUPPORTED 85;; - wash-log (file) COULD BE SUPPORTED
86;; - logentry-check () NOT NEEDED 86;; - logentry-check () NOT NEEDED
87;; - comment-history (file) ?? 87;; - comment-history (file) ??
@@ -100,8 +100,8 @@
100;; MISCELLANEOUS 100;; MISCELLANEOUS
101;; - make-version-backups-p (file) NOT NEEDED 101;; - make-version-backups-p (file) NOT NEEDED
102;; - repository-hostname (dirname) NOT NEEDED 102;; - repository-hostname (dirname) NOT NEEDED
103;; - previous-version (file rev) OK 103;; - previous-revision (file rev) OK
104;; - next-version (file rev) OK 104;; - next-revision (file rev) OK
105;; - check-headers () COULD BE SUPPORTED 105;; - check-headers () COULD BE SUPPORTED
106;; - clear-headers () NOT NEEDED 106;; - clear-headers () NOT NEEDED
107;; - delete-file (file) OK 107;; - delete-file (file) OK
@@ -372,8 +372,8 @@
372 372
373;;; MISCELLANEOUS 373;;; MISCELLANEOUS
374 374
375(defun vc-git-previous-version (file rev) 375(defun vc-git-previous-revision (file rev)
376 "Git-specific version of `vc-previous-version'." 376 "Git-specific version of `vc-previous-revision'."
377 (let ((default-directory (file-name-directory (expand-file-name file))) 377 (let ((default-directory (file-name-directory (expand-file-name file)))
378 (file (file-name-nondirectory file))) 378 (file (file-name-nondirectory file)))
379 (vc-git-symbolic-commit 379 (vc-git-symbolic-commit
@@ -390,8 +390,8 @@
390 (point) 390 (point)
391 (1- (point-max)))))))) 391 (1- (point-max))))))))
392 392
393(defun vc-git-next-version (file rev) 393(defun vc-git-next-revision (file rev)
394 "Git-specific version of `vc-next-version'." 394 "Git-specific version of `vc-next-revision'."
395 (let* ((default-directory (file-name-directory 395 (let* ((default-directory (file-name-directory
396 (expand-file-name file))) 396 (expand-file-name file)))
397 (file (file-name-nondirectory file)) 397 (file (file-name-nondirectory file))