# HG changeset patch # User Johan Bockgrd # Date 1243082815 0 # Node ID 29f059f3011cfecab712a17a4563b1b0c0daef84 # Parent 5ad347d587896872a4467b5903c0208f0ce48efe (ediff-vc-latest-version): Use property `vc-latest-revision' instead of `vc-latest-version'. (It was renamed in the big VC overhaul.) diff -r 5ad347d58789 -r 29f059f3011c lisp/ChangeLog --- a/lisp/ChangeLog Sat May 23 09:10:42 2009 +0000 +++ b/lisp/ChangeLog Sat May 23 12:46:55 2009 +0000 @@ -1,3 +1,9 @@ +2009-05-23 Johan Bockgård + + * ediff-vers.el (ediff-vc-latest-version): Use property + `vc-latest-revision' instead of `vc-latest-version'. (It was + renamed in the big VC overhaul.) + 2009-05-23 Chong Yidong * progmodes/grep.el (grep-compute-defaults): Simplify how settings diff -r 5ad347d58789 -r 29f059f3011c lisp/ediff-vers.el --- a/lisp/ediff-vers.el Sat May 23 09:10:42 2009 +0000 +++ b/lisp/ediff-vers.el Sat May 23 12:46:55 2009 +0000 @@ -69,10 +69,10 @@ "Return the version level of the latest version of FILE in repository." (if (fboundp 'vc-latest-version) (vc-latest-version file) - (or (vc-file-getprop file 'vc-latest-version) + (or (vc-file-getprop file 'vc-latest-revision) (cond ((vc-backend file) (vc-call state file) - (vc-file-getprop file 'vc-latest-version)) + (vc-file-getprop file 'vc-latest-revision)) (t (error "File %s is not under version control" file)))) ))