]> git.eshelyaron.com Git - emacs.git/commitdiff
Strip out some leading whitespace when looking at logs
authorDima Kogan <dima@secretsauce.net>
Sun, 28 Feb 2016 04:48:45 +0000 (15:18 +1030)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 28 Feb 2016 04:48:45 +0000 (15:18 +1030)
* lisp/vc/vc-git.el (vc-git-expanded-log-entry): When looking
at expanded git logs with `vc-print-root-log' (C-x v L, then
<enter> by default), Emacs was stripping out all leading
whitespace from git logs.  I now strip exactly 2 leading
spaces, which retains the indentation in the logs (bug#18110).

lisp/vc/vc-git.el

index 1c43e3ec31a1e29227ae873e8428f54af3169db8..8498cc82761af582d49a46c84f10b55c91546347 100644 (file)
@@ -970,7 +970,9 @@ or BRANCH^ (where \"^\" can be repeated)."
     (goto-char (point-min))
     (unless (eobp)
       ;; Indent the expanded log entry.
-      (indent-region (point-min) (point-max) 2)
+      (while (re-search-forward "^  " nil t)
+        (replace-match "")
+        (forward-line))
       (buffer-string))))
 
 (defun vc-git-region-history (file buffer lfrom lto)