Mercurial > hg > toybox
comparison toys/catv.c @ 155:6c7836dbc16e
Replace space indent with tab indent
author | Charlie Shepherd <masterdriverz@gentoo.org> |
---|---|
date | Tue, 06 Nov 2007 23:24:56 +0000 |
parents | 7c77c6ec17ee |
children | 29e2051296fd |
comparison
equal
deleted
inserted
replaced
154:05d80f4dfdb4 | 155:6c7836dbc16e |
---|---|
42 c -= 128; | 42 c -= 128; |
43 } | 43 } |
44 } | 44 } |
45 if (c < 32) { | 45 if (c < 32) { |
46 if (c == 10) { | 46 if (c == 10) { |
47 if (toys.optflags & 1) putchar('$'); | 47 if (toys.optflags & 1) putchar('$'); |
48 } else if (toys.optflags & (c==9 ? 2 : 4)) { | 48 } else if (toys.optflags & (c==9 ? 2 : 4)) { |
49 printf("^%c", c+'@'); | 49 printf("^%c", c+'@'); |
50 continue; | 50 continue; |
51 } | 51 } |
52 } | 52 } |