Feature Requests item #1510467, was opened at 2006-06-22 02:01
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=352439&aid=1510467&group_id=2439
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: Output pane behaviour
Initial Comment:
It's possible to correct the outputpane behaviour which
doesn't always catch output message? For instance a C
program like this:
int main()
{
char s[10];
printf("Digit a string: ");
scanf( "%10s", s);
printf("String: %s\n", s);
return 0;
}
on the output windows works as aspected only if there's
a _flushall() instruction after the first printf() (to
force output form printf). Without _flushall() the
output (on the output pane) is like this:
>program_name
mystring
Digit a string:
String: mystring
>Exit code: 0
instead of:
>program_name
Digit a string:
mystring
String: mystring
>Exit code: 0
Thanks.
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=352439&aid=1510467&group_id=2439
_______________________________________________
Scintilla-interest mailing list
[email protected]
http://mailman.lyra.org/mailman/listinfo/scintilla-interest