X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=test%2Frailroad.c;h=12844cbdd7041009e528fc61884d5f77b80df51a;hp=33dc46f1dd1cb907d71cff3e892267b46c74dbd5;hb=19e522ff96ce25dbb06b42c6e7c7680ecb12a277;hpb=e2dee48666d83c609f7ecced6203ecfdc94e36aa diff --git a/test/railroad.c b/test/railroad.c index 33dc46f1..12844cbd 100644 --- a/test/railroad.c +++ b/test/railroad.c @@ -1,5 +1,5 @@ /**************************************************************************** - * Copyright (c) 2000-2011,2013 Free Software Foundation, Inc. * + * Copyright (c) 2000-2013,2017 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * @@ -29,7 +29,7 @@ /* * Author: Thomas E. Dickey - 2000 * - * $Id: railroad.c,v 1.21 2013/09/28 22:02:17 tom Exp $ + * $Id: railroad.c,v 1.22 2017/09/30 17:55:22 tom Exp $ * * A simple demo of the termcap interface. */ @@ -187,10 +187,13 @@ railroad(char **args) NCURSES_CONST char *name = getenv("TERM"); char buffer[1024]; char area[1024], *ap = area; + int z; if (name == 0) name = "dumb"; - if (tgetent(buffer, name) >= 0) { + + InitAndCatch(z = tgetent(buffer, name), onsig); + if (z >= 0) { wipeit = tgetstr("ce", &ap); height = tgetnum("li"); @@ -220,8 +223,6 @@ railroad(char **args) MyShowCursor(0); - CATCHALL(onsig); - while (*args) { ShowSign(*args++); }