diff options
author | mph <mph@FreeBSD.org> | 2000-02-27 23:02:47 +0000 |
---|---|---|
committer | mph <mph@FreeBSD.org> | 2000-02-27 23:02:47 +0000 |
commit | 30b97776d572e855b3cfa3df0c76f8701c36bc6c (patch) | |
tree | 0f849af11d4d8d9843e70f910633ecd03f9ec801 /games/atc | |
parent | d62b5b6f162264bbe88e303f74adc5f39c74c013 (diff) | |
download | FreeBSD-src-30b97776d572e855b3cfa3df0c76f8701c36bc6c.zip FreeBSD-src-30b97776d572e855b3cfa3df0c76f8701c36bc6c.tar.gz |
Change RETTOKEN from '\n' to '\r'; it didn't work under some or all
terminals before. This change tested on FreeBSD syscons, XFree86 xterm,
and Solaris xterm.
Diffstat (limited to 'games/atc')
-rw-r--r-- | games/atc/input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/atc/input.c b/games/atc/input.c index 0becdf6..88eb603 100644 --- a/games/atc/input.c +++ b/games/atc/input.c @@ -59,7 +59,7 @@ static const char rcsid[] = #define MAXRULES 6 #define MAXDEPTH 15 -#define RETTOKEN '\n' +#define RETTOKEN '\r' #ifdef SYSV #define CRTOKEN '\r' #endif |