# HG changeset patch # User Stefan Monnier # Date 1254112400 0 # Node ID e0bd6a2a8ee5ef52f1cb9ce26d57197ec409a3d2 # Parent 41de8bc6a7beb383d3a153548dbb9f0c02ea7fec (log-view-diff,log-view-diff-changeset): Improve docstring. diff -r 41de8bc6a7be -r e0bd6a2a8ee5 lisp/log-view.el --- a/lisp/log-view.el Mon Sep 28 02:01:52 2009 +0000 +++ b/lisp/log-view.el Mon Sep 28 04:33:20 2009 +0000 @@ -483,7 +483,9 @@ 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 @@ 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))))