]> git.eshelyaron.com Git - emacs.git/commitdiff
(log-view-diff): Doc fix.
authorJuri Linkov <juri@jurta.org>
Wed, 14 Dec 2005 10:20:03 +0000 (10:20 +0000)
committerJuri Linkov <juri@jurta.org>
Wed, 14 Dec 2005 10:20:03 +0000 (10:20 +0000)
lisp/ChangeLog
lisp/log-view.el

index 0843dab7a139489a324339d40c1c11f03a5fb55c..84ecda1188589c84abaad839afa6f728a8f2b3f0 100644 (file)
@@ -1,5 +1,7 @@
 2005-12-14  Juri Linkov  <juri@jurta.org>
 
+       * log-view.el (log-view-diff): Doc fix.
+
        * isearch.el (isearch-query-replace): Use (mark) instead of
        isearch-opoint if mark is active in transient-mark-mode.
 
index d640eac38355ccb67ee9ade2ce1b98f7fb607494..6a9464005fb1b5836aace40333069f3b193f9c99 100644 (file)
 ;;
 
 (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))))