diff options
| -rw-r--r-- | lisp/vc/vc-git.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/vc/vc-git.el b/lisp/vc/vc-git.el index 1c43e3ec31a..8498cc82761 100644 --- a/lisp/vc/vc-git.el +++ b/lisp/vc/vc-git.el | |||
| @@ -970,7 +970,9 @@ or BRANCH^ (where \"^\" can be repeated)." | |||
| 970 | (goto-char (point-min)) | 970 | (goto-char (point-min)) |
| 971 | (unless (eobp) | 971 | (unless (eobp) |
| 972 | ;; Indent the expanded log entry. | 972 | ;; Indent the expanded log entry. |
| 973 | (indent-region (point-min) (point-max) 2) | 973 | (while (re-search-forward "^ " nil t) |
| 974 | (replace-match "") | ||
| 975 | (forward-line)) | ||
| 974 | (buffer-string)))) | 976 | (buffer-string)))) |
| 975 | 977 | ||
| 976 | (defun vc-git-region-history (file buffer lfrom lto) | 978 | (defun vc-git-region-history (file buffer lfrom lto) |