]> code.delx.au - gnu-emacs/commitdiff
(log-view-diff): Clarify doc string.
authorNick Roberts <nickrob@snap.net.nz>
Fri, 2 Dec 2005 07:59:56 +0000 (07:59 +0000)
committerNick Roberts <nickrob@snap.net.nz>
Fri, 2 Dec 2005 07:59:56 +0000 (07:59 +0000)
lisp/log-view.el

index cd403a831453d77118b3b48fcfd708b90190bdc2..d640eac38355ccb67ee9ade2ce1b98f7fb607494 100644 (file)
 
 (defun log-view-diff (beg end)
   "Get the diff for several revisions.
-If the point is the same as the mark, get the diff for this revision.
-Otherwise, get the diff between the revisions
-were the region starts and ends."
+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."
   (interactive
    (list (if mark-active (region-beginning) (point))
          (if mark-active (region-end) (point))))