diff options
| -rw-r--r-- | lisp/log-view.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/log-view.el b/lisp/log-view.el index a6f736d16f7..51ca8907db8 100644 --- a/lisp/log-view.el +++ b/lisp/log-view.el | |||
| @@ -191,8 +191,10 @@ | |||
| 191 | "Get the diff for several revisions. | 191 | "Get the diff for several revisions. |
| 192 | If the point is the same as the mark, get the diff for this revision. | 192 | If the point is the same as the mark, get the diff for this revision. |
| 193 | Otherwise, get the diff between the revisions | 193 | Otherwise, get the diff between the revisions |
| 194 | were the region starts and ends." | 194 | were the region starts and ends." |
| 195 | (interactive "r") | 195 | (interactive |
| 196 | (list (if mark-active (region-beginning) (point)) | ||
| 197 | (if mark-active (region-end) (point)))) | ||
| 196 | (let ((fr (log-view-current-tag beg)) | 198 | (let ((fr (log-view-current-tag beg)) |
| 197 | (to (log-view-current-tag end))) | 199 | (to (log-view-current-tag end))) |
| 198 | (when (string-equal fr to) | 200 | (when (string-equal fr to) |