]> code.delx.au - gnu-emacs/commitdiff
(log-view-diff,log-view-diff-changeset): Improve docstring.
authorStefan Monnier <monnier@iro.umontreal.ca>
Mon, 28 Sep 2009 04:33:20 +0000 (04:33 +0000)
committerStefan Monnier <monnier@iro.umontreal.ca>
Mon, 28 Sep 2009 04:33:20 +0000 (04:33 +0000)
lisp/log-view.el

index 01fb0b2f0a85fc13172298d1ecd991df24101ac9..1b79f0a595afd1e1cac068e2e8bf4ae617789f5d 100644 (file)
@@ -483,7 +483,9 @@ log entries."
 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."
+and ends.
+Contrary to `log-view-diff-changeset', it will only show the part of the
+changeset that affected the currently considered file(s)."
   (interactive
    (list (if mark-active (region-beginning) (point))
          (if mark-active (region-end) (point))))
@@ -508,7 +510,9 @@ and ends."
 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."
+and ends.
+Contrary to `log-view-diff', it will show the whole changeset including
+the changes that affected other files than the currently considered file(s)."
   (interactive
    (list (if mark-active (region-beginning) (point))
          (if mark-active (region-end) (point))))