diff options
| -rw-r--r-- | lisp/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/log-view.el | 9 |
2 files changed, 7 insertions, 4 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0843dab7a13..84ecda11885 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2005-12-14 Juri Linkov <juri@jurta.org> | 1 | 2005-12-14 Juri Linkov <juri@jurta.org> |
| 2 | 2 | ||
| 3 | * log-view.el (log-view-diff): Doc fix. | ||
| 4 | |||
| 3 | * isearch.el (isearch-query-replace): Use (mark) instead of | 5 | * isearch.el (isearch-query-replace): Use (mark) instead of |
| 4 | isearch-opoint if mark is active in transient-mark-mode. | 6 | isearch-opoint if mark is active in transient-mark-mode. |
| 5 | 7 | ||
diff --git a/lisp/log-view.el b/lisp/log-view.el index d640eac3835..6a9464005fb 100644 --- a/lisp/log-view.el +++ b/lisp/log-view.el | |||
| @@ -195,10 +195,11 @@ | |||
| 195 | ;; | 195 | ;; |
| 196 | 196 | ||
| 197 | (defun log-view-diff (beg end) | 197 | (defun log-view-diff (beg end) |
| 198 | "Get the diff for several revisions. | 198 | "Get the diff between two revisions. |
| 199 | If the point is the same as the mark or the mark is not active, | 199 | If the mark is not active or the mark is on the revision at point, |
| 200 | get the diff for this revision. Otherwise, get the diff between | 200 | get the diff between the revision at point and its previous revision. |
| 201 | the revisions where the region starts and ends." | 201 | Otherwise, get the diff between the revisions where the region starts |
| 202 | and ends." | ||
| 202 | (interactive | 203 | (interactive |
| 203 | (list (if mark-active (region-beginning) (point)) | 204 | (list (if mark-active (region-beginning) (point)) |
| 204 | (if mark-active (region-end) (point)))) | 205 | (if mark-active (region-end) (point)))) |