Skip to content

Commit

Permalink
Comment out debug statements...
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2641 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
michaelrsweet committed Sep 27, 2002
1 parent bcde404 commit 5d33456
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/editor.cxx
@@ -1,5 +1,5 @@
//
// "$Id: editor.cxx,v 1.2.2.3.2.15 2002/09/26 20:43:03 easysw Exp $"
// "$Id: editor.cxx,v 1.2.2.3.2.16 2002/09/27 18:01:30 easysw Exp $"
//
// A simple text editor program for the Fast Light Tool Kit (FLTK).
//
Expand Down Expand Up @@ -367,12 +367,12 @@ style_update(int pos, // I - Position of update
style = stylebuf->text_range(start, end);
last = style[end - start - 1];

printf("start = %d, end = %d, text = \"%s\", style = \"%s\"...\n",
start, end, text, style);
// printf("start = %d, end = %d, text = \"%s\", style = \"%s\"...\n",
// start, end, text, style);

style_parse(text, style, end - start);

printf("new style = \"%s\"...\n", style);
// printf("new style = \"%s\"...\n", style);

stylebuf->replace(start, end, style);
((Fl_Text_Editor *)cbArg)->redisplay_range(start, end);
Expand Down Expand Up @@ -771,5 +771,5 @@ int main(int argc, char **argv) {
}

//
// End of "$Id: editor.cxx,v 1.2.2.3.2.15 2002/09/26 20:43:03 easysw Exp $".
// End of "$Id: editor.cxx,v 1.2.2.3.2.16 2002/09/27 18:01:30 easysw Exp $".
//

0 comments on commit 5d33456

Please sign in to comment.