spaces around else for rtm

This commit is contained in:
rsc 2007-08-28 18:37:41 +00:00
parent e4d6a21165
commit 5516be1fed
12 changed files with 23 additions and 24 deletions

View file

@ -51,7 +51,7 @@ cga_putc(int c)
else if(c == BACKSPACE){
if(pos > 0)
crt[--pos] = ' ' | 0x0700;
}else
} else
crt[pos++] = (c&0xff) | 0x0700; // black on white
if((pos/80) >= 24){ // Scroll up.
@ -91,7 +91,7 @@ printint(int xx, int base, int sgn)
if(sgn && xx < 0){
neg = 1;
x = 0 - xx;
}else{
} else {
x = xx;
}