]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/trace/lib_tracedmp.c
ncurses 5.6 - patch 20080804
[ncurses.git] / ncurses / trace / lib_tracedmp.c
index 536231364085c96b601da173df2432bf0198123b..6fd795c3d91faae2e1fe880369d1e9b15bcf126c 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 1998-2006,2007 Free Software Foundation, Inc.              *
+ * Copyright (c) 1998-2007,2008 Free Software Foundation, Inc.              *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
@@ -39,7 +39,7 @@
 #include <curses.priv.h>
 #include <ctype.h>
 
-MODULE_ID("$Id: lib_tracedmp.c,v 1.28 2007/04/21 21:10:54 tom Exp $")
+MODULE_ID("$Id: lib_tracedmp.c,v 1.30 2008/08/03 15:44:31 tom Exp $")
 
 #ifdef TRACE
 
@@ -100,6 +100,30 @@ _tracedump(const char *name, WINDOW *win)
                (long) win->_line[n].lastchar,
                ep);
 
+       /* if there are multi-column characters on the line, print them now */
+       if_WIDEC({
+           bool multicolumn = FALSE;
+           for (j = 0; j < width; ++j)
+               if (WidecExt(win->_line[n].text[j]) != 0) {
+                   multicolumn = TRUE;
+                   break;
+               }
+           if (multicolumn) {
+               ep = my_buffer;
+               for (j = 0; j < width; ++j) {
+                   int test = WidecExt(win->_line[n].text[j]);
+                   if (test) {
+                       ep[j] = test + '0';
+                   } else {
+                       ep[j] = ' ';
+                   }
+               }
+               ep[j] = '\0';
+               _tracef("%*s[%2d]%*s='%s'", (int) strlen(name),
+                       "widec", n, 8, " ", my_buffer);
+           }
+       });
+
        /* dump A_COLOR part, will screw up if there are more than 96 */
        havecolors = FALSE;
        for (j = 0; j < width; ++j)
@@ -156,5 +180,5 @@ _tracedump(const char *name, WINDOW *win)
 }
 
 #else
-empty_module(_nc_lib_tracedmp)
+EMPTY_MODULE(_nc_lib_tracedmp)
 #endif /* TRACE */