From: Stefan Monnier Date: Mon, 28 Sep 2009 04:33:20 +0000 (+0000) Subject: (log-view-diff,log-view-diff-changeset): Improve docstring. X-Git-Tag: emacs-pretest-23.1.90~1102 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1acec32e22582c065117c9c1f54b298b43fd34af;p=emacs.git (log-view-diff,log-view-diff-changeset): Improve docstring. --- 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))))