[asterisk-commits] mvanbaak: branch group/appdocsxml r143128 - /team/group/appdocsxml/main/pbx.c

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Mon Sep 15 11:55:31 CDT 2008


Author: mvanbaak
Date: Mon Sep 15 11:55:31 2008
New Revision: 143128

URL: http://svn.digium.com/view/asterisk?view=rev&rev=143128
Log:
remove the - character when we wrap because it looks bad in
places where we are using a different color.

I left it in the code commented out with a comment saying why
it's still there.

Modified:
    team/group/appdocsxml/main/pbx.c

Modified: team/group/appdocsxml/main/pbx.c
URL: http://svn.digium.com/view/asterisk/team/group/appdocsxml/main/pbx.c?view=diff&rev=143128&r1=143127&r2=143128
==============================================================================
--- team/group/appdocsxml/main/pbx.c (original)
+++ team/group/appdocsxml/main/pbx.c Mon Sep 15 11:55:31 2008
@@ -2964,7 +2964,9 @@
 						in = t;
 						continue;
 					}
-					tmp[tmplen++] = '-';
+					// If we add this, we can have an extra - in colored output
+					// Sometimes that looks really bad. If needed, we can enable it again
+					// tmp[tmplen++] = '-';
 					tmp[tmplen++] = '\n';
 					for (i = 0; i < strlen(postbr); i++) {
 						tmp[tmplen++] = postbr[i];




More information about the asterisk-commits mailing list