summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2009-09-28 04:33:20 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2009-09-28 04:33:20 +0000
commit1acec32e22582c065117c9c1f54b298b43fd34af (patch)
tree51f3f7c5ee51f45afec9974c9dfd1f6f0ccb4fb7
parent9694740bccafd954b5434c0ee17c97ffc7f4ec8d (diff)
downloademacs-1acec32e22582c065117c9c1f54b298b43fd34af.tar.gz
(log-view-diff,log-view-diff-changeset): Improve docstring.
-rw-r--r--lisp/log-view.el8
1 files changed, 6 insertions, 2 deletions
diff --git a/lisp/log-view.el b/lisp/log-view.el
index 01fb0b2f0a8..1b79f0a595a 100644
--- a/lisp/log-view.el
+++ b/lisp/log-view.el
@@ -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))))