billiob pushed a commit to branch master.

commit 55b66a93d7129f529af321b74c50b6985486adea
Author: Boris Faure <[email protected]>
Date:   Sat Jun 8 21:06:08 2013 +0200

    eina-log: xterm-256 (or terminology someday…) supports colors
---
 src/lib/eina/eina_log.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/lib/eina/eina_log.c b/src/lib/eina/eina_log.c
index 5e39de6..524df6d 100644
--- a/src/lib/eina/eina_log.c
+++ b/src/lib/eina/eina_log.c
@@ -1177,6 +1177,7 @@ static inline Eina_Bool
 eina_log_term_color_supported(const char *term)
 {
    const char *tail;
+   size_t len;
 
    if (!term)
       return EINA_FALSE;
@@ -1188,10 +1189,11 @@ eina_log_term_color_supported(const char *term)
        * take from gentoo's portage.
        */
 
-      case 'x': /* xterm and xterm-color */
+      case 'x': /* xterm and xterm-(256)color */
+         len = strlen(term);
          return ((strncmp(tail, "term", sizeof("term") - 1) == 0) &&
                  ((tail[sizeof("term") - 1] == '\0') ||
-                  (strcmp(tail + sizeof("term") - 1, "-color") == 0)));
+                  (strcmp(term + len - sizeof("color") + 1, "color") == 0)));
 
       case 'E': /* Eterm */
       case 'a': /* aterm */

-- 

------------------------------------------------------------------------------
How ServiceNow helps IT people transform IT departments:
1. A cloud service to automate IT design, transition and operations
2. Dashboards that offer high-level views of enterprise services
3. A single system of record for all IT processes
http://p.sf.net/sfu/servicenow-d2d-j

Reply via email to