diff options
author | Lorry Tar Creator <lorry-tar-importer@lorry> | 2021-10-20 23:22:45 +0000 |
---|---|---|
committer | Lorry Tar Creator <lorry-tar-importer@lorry> | 2021-10-20 23:22:45 +0000 |
commit | 332fa27640b1901ac632e6d37a4aa9643d0f8594 (patch) | |
tree | bfb5303e24d1cd4ddd22df12f45a013fefb9ca23 /test/railroad.c | |
parent | ff448436b2b70771d09b8d5ff34a509dcf02f81b (diff) | |
download | ncurses-master.tar.gz |
ncurses-6.3HEADncurses-6.3master
Diffstat (limited to 'test/railroad.c')
-rw-r--r-- | test/railroad.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/test/railroad.c b/test/railroad.c index e3558b0..3336f56 100644 --- a/test/railroad.c +++ b/test/railroad.c @@ -30,7 +30,7 @@ /* * Author: Thomas E. Dickey - 2000 * - * $Id: railroad.c,v 1.24 2020/02/02 23:34:34 tom Exp $ + * $Id: railroad.c,v 1.25 2020/09/05 21:43:37 tom Exp $ * * A simple demo of the termcap interface. */ @@ -191,7 +191,11 @@ railroad(char **args) int z; if (name == 0) +#ifdef EXP_WIN32_DRIVER + name = "ms-terminal"; +#else name = "dumb"; +#endif InitAndCatch(z = tgetent(buffer, name), onsig); if (z >= 0) { |