From 25344b050dcb716283711790f58c6244a5f935a8 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Tue, 9 Mar 2010 22:24:44 +0900 Subject: [PATCH] (vc-git-print-log): Use "tformat:" for shortlog, instead of "format:" This ensures that the output is newline-terminated. --- lisp/ChangeLog | 6 ++++++ lisp/vc-git.el | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 04ba881c59e..0157538dc47 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,9 @@ +2010-03-09 Miles Bader > + + * vc-git.el (vc-git-print-log): Use "tformat:" for shortlog, + instead of "format:"; this ensures that the output is + newline-terminated. + 2010-03-08 Chong Yidong * mail/rfc822.el (rfc822-addresses): Use nested catches to ensure diff --git a/lisp/vc-git.el b/lisp/vc-git.el index 9362ad743ee..8799e15305f 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el @@ -587,7 +587,7 @@ or an empty string if none." '("log" "--no-color") (when shortlog '("--graph" "--decorate" "--date=short" - "--pretty=format:%d%h %ad %s" "--abbrev-commit")) + "--pretty=tformat:%d%h %ad %s" "--abbrev-commit")) (when limit (list "-n" (format "%s" limit))) (when start-revision (list start-revision)) '("--"))))))) -- 2.39.5