hermet pushed a commit to branch master.

http://git.enlightenment.org/tools/enventor.git/commit/?id=1bfb773a729aa2c589f973ec05328fbeb7d30878

commit 1bfb773a729aa2c589f973ec05328fbeb7d30878
Author: Jaehyun Cho <jae_hyun....@samsung.com>
Date:   Wed Oct 22 14:17:41 2014 +0900

    build: Fix to show multi-line error message on console.
    
    Summary: Fix to show multi-line error message on console.
    
    Reviewers: Hermet
    
    Differential Revision: https://phab.enlightenment.org/D1556
---
 src/lib/build.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lib/build.c b/src/lib/build.c
index c7570f9..8098d2b 100644
--- a/src/lib/build.c
+++ b/src/lib/build.c
@@ -40,7 +40,7 @@ exe_event_error_cb(void *data, int type EINA_UNUSED, void 
*event_info)
    for (el = ev->lines; el && el->line; el++)
      {
         eina_strbuf_append(bd->strbuf, el->line);
-        eina_strbuf_append_char(bd->strbuf, '\n');
+        eina_strbuf_append(bd->strbuf, "<br/>");
      }
 
    bd->noti_cb(bd->noti_data, eina_strbuf_string_get(bd->strbuf));

-- 


Reply via email to