mined1.c: remove i386 guard around escape sequences.
The escape sequences for the function keys used to be separated out in older versions of Minix when they were different for m68k and intel. Support for m68k was dropped and that code was removed, leaving the ifdef i386. Since the sequences are the same for i386 and arm, there is no need to keep the ifdef i386. Change-Id: Id96a80bcb24da120efa63acc9b248d87fc347eac
This commit is contained in:
parent
6a0aa6fb5e
commit
d131b58784
1 changed files with 0 additions and 2 deletions
|
@ -1502,7 +1502,6 @@ void (*escfunc(int c))(void)
|
||||||
case 'B': return(DN);
|
case 'B': return(DN);
|
||||||
case 'C': return(RT);
|
case 'C': return(RT);
|
||||||
case 'D': return(LF);
|
case 'D': return(LF);
|
||||||
#if defined(__i386__)
|
|
||||||
case '@': return(MA);
|
case '@': return(MA);
|
||||||
case 'G': return(FS);
|
case 'G': return(FS);
|
||||||
case 'S': return(SR);
|
case 'S': return(SR);
|
||||||
|
@ -1510,7 +1509,6 @@ void (*escfunc(int c))(void)
|
||||||
case 'U': return(PD);
|
case 'U': return(PD);
|
||||||
case 'V': return(PU);
|
case 'V': return(PU);
|
||||||
case 'Y': return(EF);
|
case 'Y': return(EF);
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
return(I);
|
return(I);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue