If DEBUG is defined, then fill numeric fields with asterisks instead of
spaces and numbers for temporary(?) debugging.
This commit is contained in:
parent
e1300711b8
commit
43f2757a27
@ -696,6 +696,11 @@ putint(n, l, lc, w)
|
||||
char b[128];
|
||||
|
||||
move(l, lc);
|
||||
#ifdef DEBUG
|
||||
while (w-- > 0)
|
||||
addch('*');
|
||||
return;
|
||||
#endif
|
||||
if (n == 0) {
|
||||
while (w-- > 0)
|
||||
addch(' ');
|
||||
@ -723,6 +728,11 @@ putfloat(f, l, lc, w, d, nz)
|
||||
char b[128];
|
||||
|
||||
move(l, lc);
|
||||
#ifdef DEBUG
|
||||
while (--w >= 0)
|
||||
addch('*');
|
||||
return;
|
||||
#endif
|
||||
if (nz && f == 0.0) {
|
||||
while (--w >= 0)
|
||||
addch(' ');
|
||||
@ -748,6 +758,11 @@ putlongdouble(f, l, lc, w, d, nz)
|
||||
char b[128];
|
||||
|
||||
move(l, lc);
|
||||
#ifdef DEBUG
|
||||
while (--w >= 0)
|
||||
addch('*');
|
||||
return;
|
||||
#endif
|
||||
if (nz && f == 0.0) {
|
||||
while (--w >= 0)
|
||||
addch(' ');
|
||||
|
Loading…
Reference in New Issue
Block a user