changeset 67569:4c4e2a7d9c45

(log-view-diff): Doc fix.
author Juri Linkov <juri@jurta.org>
date Wed, 14 Dec 2005 10:19:01 +0000
parents 0253deb9a195
children 96258e76ae94
files lisp/log-view.el
diffstat 1 files changed, 5 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/log-view.el	Wed Dec 14 07:55:50 2005 +0000
+++ b/lisp/log-view.el	Wed Dec 14 10:19:01 2005 +0000
@@ -195,10 +195,11 @@
 ;;
 
 (defun log-view-diff (beg end)
-  "Get the diff for several revisions.
-If the point is the same as the mark or the mark is not active,
-get the diff for this revision.  Otherwise, get the diff between
-the revisions where the region starts and ends."
+  "Get the diff between two revisions.
+If the mark is not active or the mark is on the revision at point,
+get the diff between the revision at point and its previous revision.
+Otherwise, get the diff between the revisions where the region starts
+and ends."
   (interactive
    (list (if mark-active (region-beginning) (point))
          (if mark-active (region-end) (point))))