1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-02-03 23:23:03 +00:00

Remove FUJI compile flag. (#38)

This was only used for a keyboard warning that doesn't seem
relevant any longer.
This commit is contained in:
Bruce Mitchener
2020-12-14 08:21:54 +07:00
committed by GitHub
parent 074dce0e90
commit 7313de4274
2 changed files with 1 additions and 23 deletions

View File

@@ -574,19 +574,9 @@ void keyboardtype(int fd)
/* Get keytype from LDEKBDTYPE */
if ((key = getenv("LDEKBDTYPE")) == 0) {
#ifdef FUJI
/* obnoxious behavior */
mess_reset();
printf("!!CAUTION: LDEKBDTYPE is not set.\n");
printf("Please retry after setting LDEKBDTYPE correctly.\n");
printf("Usage: setenv LDEKBDTYPE <kbdtype>\n");
printf(" (one of type2, type3, type4, jle, or as3000j)");
exit(0); /* exit to shell */
#else
#ifdef RS6000
type = KB_RS6000;
#else
#ifdef XWINDOW
#elif XWINDOW
type = KB_X;
#elif DOS
type = KB_DOS;
@@ -596,15 +586,6 @@ void keyboardtype(int fd)
type = KB_SUN3;
} /* otherwise, type is set */
#endif /* XWINDOW */
#endif /* RS6000 */
#endif /* FUJI */
#ifdef XWINDOW
#undef FUJI
#endif /* XWINDOW */
} /* if end */
else {
if (strcmp("as3000j", key) == 0)