[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
3 Bugs
Hi everybody,
here is a list of three things that should be improved in xwpe:
1) After change and replace,when un-clicking "Prompt on Replace" and
the replacement is done, a window pops up saying "text not found".
Better would be: n replacements performed, "n" with the number
The beautifier could be improved:
2) the statement
for(i=0;i<10;i++) {
command();
}
is replaced by the beautifer function with
for(i=0; i<10;i++){
command();
}
(placing the opening curly brace behind the for() or if() statement is
recommended style)
3) strings that exceed the line such as
printf("This is gonna be a \
real long string");
are
formatted as
printf("This is gonna be a \
real long string");
producing
This is gonna be a real long string
Ron