[794] in BarnOwl Developers
[D-O-H] r798 - branches/barnowl_unicode/owl
daemon@ATHENA.MIT.EDU (asedeno@MIT.EDU)
Thu Oct 29 18:09:47 2009
Resent-From: nelhage@mit.edu
Resent-To: barnowl-dev-mtg@charon.mit.edu
To: dirty-owl-hackers@mit.edu
From: asedeno@MIT.EDU
Reply-to: dirty-owl-hackers@MIT.EDU
Date: Fri, 4 Jan 2008 14:32:59 -0500 (EST)
Author: asedeno
Date: 2008-01-04 14:32:59 -0500 (Fri, 04 Jan 2008)
New Revision: 798
Modified:
branches/barnowl_unicode/owl/fmtext.c
Log:
unicode/glib branch
* removing some debugging code I left in accidentally.
Modified: branches/barnowl_unicode/owl/fmtext.c
===================================================================
--- branches/barnowl_unicode/owl/fmtext.c 2008-01-04 19:31:55 UTC (rev 797)
+++ branches/barnowl_unicode/owl/fmtext.c 2008-01-04 19:32:59 UTC (rev 798)
@@ -451,19 +451,16 @@
owl_fmtext_append_spaces(out, padding);
if (ptr_c == ptr_e) {
/* We made it to the newline. */
- owl_function_debugmsg("fmtc: reached newline");
_owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff);
}
else {
if (chwidth > 1) {
/* Last char is wide, truncate. */
- owl_function_debugmsg("fmtc: truncating.");
_owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff - 1);
owl_fmtext_append_normal(out, "\n");
}
else {
/* Last char fits perfectly, leave alone.*/
- owl_function_debugmsg("fmtc: fits fine.");
_owl_fmtext_append_fmtext(out, in, ptr_s - in->textbuff, ptr_c - in->textbuff);
}
}