[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: pointless buttons at end of VC log buffers
From: |
Miles Bader |
Subject: |
Re: pointless buttons at end of VC log buffers |
Date: |
Thu, 18 Feb 2010 07:36:45 +0900 |
BTW, the following patch should add the missing newline for git (a
further blank line added in the generic part would also make things prettier):
diff --git a/lisp/vc-git.el b/lisp/vc-git.el
index 0d8e630..ad99e2e 100644
--- a/lisp/vc-git.el
+++ b/lisp/vc-git.el
@@ -551,7 +551,7 @@ If nil, use the value of `vc-diff-switches'. If t, use no
switches."
'("log" "--no-color")
(when shortlog
'("--graph" "--decorate"
- "--date=short" "--pretty=format:%d%h %ad %s"
"--abbrev-commit"))
+ "--date=short" "--pretty=tformat:%d%h %ad %s"
"--abbrev-commit"))
(when limit (list "-n" (format "%s" limit)))
(when start-revision (list start-revision))
'("--")))))))
Thanks,
-Miles
--
One of the lessons of history is that nothing is often a good thing to
do, and always a clever thing to say. -- Will Durant