emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r109531: Update docstrings for last c


From: Chong Yidong
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r109531: Update docstrings for last change.
Date: Thu, 09 Aug 2012 15:50:49 +0800
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 109531
committer: Chong Yidong <address@hidden>
branch nick: trunk
timestamp: Thu 2012-08-09 15:50:49 +0800
message:
  Update docstrings for last change.
modified:
  lisp/vc/log-view.el
=== modified file 'lisp/vc/log-view.el'
--- a/lisp/vc/log-view.el       2012-08-09 07:45:23 +0000
+++ b/lisp/vc/log-view.el       2012-08-09 07:50:49 +0000
@@ -537,12 +537,14 @@
 
 (defun log-view-diff (beg end)
   "Get the diff between two revisions.
-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.
-Contrary to `log-view-diff-changeset', it will only show the part of the
-changeset that affected the currently considered file(s)."
+If the region is inactive 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.
+
+Unlike `log-view-diff-changeset', this function only shows the
+part of the changeset which affected the currently considered
+file(s)."
   (interactive
    (list (if (use-region-p) (region-beginning) (point))
          (if (use-region-p) (region-end) (point))))
@@ -562,12 +564,14 @@
 
 (defun log-view-diff-changeset (beg end)
   "Get the diff between two revisions.
-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.
-Contrary to `log-view-diff', it will show the whole changeset including
-the changes that affected other files than the currently considered file(s)."
+If the region is inactive 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.
+
+Unlike `log-view-diff' this function shows the whole changeset,
+including changes affecting other files than the currently
+considered file(s)."
   (interactive
    (list (if (use-region-p) (region-beginning) (point))
          (if (use-region-p) (region-end) (point))))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]