From f9c69173f0618b23d64a75df87b8af0c3232f442 Mon Sep 17 00:00:00 2001 From: Phil Jackson Date: Sun, 10 Aug 2008 20:44:07 +0100 Subject: [PATCH] `eres' now removes \n from comments. --- etest.el | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/etest.el b/etest.el index 39cb904..eea8bd4 100644 --- a/etest.el +++ b/etest.el @@ -249,7 +249,10 @@ like to compare. See the file etest.etest for example usage." (res-items '(:result :comments :doc :todo)) (my-comments (mapconcat '(lambda (item) - (format "%9S %S" item (plist-get testres item))) + (replace-regexp-in-string "\n" " " + (format "%9S %S" + item + (plist-get testres item)))) res-items "\n"))) (dolist (sym res-items) -- 2.11.4.GIT