branch: externals/vc-hgcmd
commit 2b1b87ba16195c19ff0ebf808bfb26eae40eb8af
Author: muffinmad <[email protected]>
Commit: muffinmad <[email protected]>
Trim left whitespace from entry value in vc-dir
---
vc-hgcmd.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/vc-hgcmd.el b/vc-hgcmd.el
index 546a017..7ffc964 100644
--- a/vc-hgcmd.el
+++ b/vc-hgcmd.el
@@ -753,7 +753,7 @@ Insert output to process buffer and check if amount of data
is enought to parse
(goto-char (point-min))
(while (not (eobp))
(push
- (let ((entry (if (looking-at "\\([^ ].*\\): \\(.*\\)")
+ (let ((entry (if (looking-at "\\([^ ].*\\):\\s-+\\(.*\\)")
(cons (capitalize (match-string 1))
(match-string 2))
(cons "" (buffer-substring (point)
(line-end-position))))))
(concat