X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2Fkeyok.c;h=8e0b9629db20290bfe3050d9949fbfb24a3cbb0d;hp=00e936dacde991fd8233451558db5a2b94342b6c;hb=2b7c2fd2f9d58719770902ce4d0d0aeb87b284f7;hpb=98d8891f42d8acac5c2ade39d163f386057a22e4 diff --git a/ncurses/base/keyok.c b/ncurses/base/keyok.c index 00e936da..8e0b9629 100644 --- a/ncurses/base/keyok.c +++ b/ncurses/base/keyok.c @@ -1,5 +1,6 @@ /**************************************************************************** - * Copyright (c) 1998-2011,2012 Free Software Foundation, Inc. * + * Copyright 2019,2020 Thomas E. Dickey * + * Copyright 1998-2012,2014 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 * @@ -33,7 +34,7 @@ #include -MODULE_ID("$Id: keyok.c,v 1.13 2012/11/18 02:14:35 tom Exp $") +MODULE_ID("$Id: keyok.c,v 1.16 2020/02/02 23:34:34 tom Exp $") /* * Enable (or disable) ncurses' interpretation of a keycode by adding (or @@ -53,9 +54,8 @@ NCURSES_SP_NAME(keyok) (NCURSES_SP_DCLx int c, bool flag) if (HasTerminal(SP_PARM)) { T((T_CALLED("keyok(%p, %d,%d)"), (void *) SP_PARM, c, flag)); #ifdef USE_TERM_DRIVER - code = CallDriver_2(sp, kyOk, c, flag); + code = CallDriver_2(sp, td_kyOk, c, flag); #else - T((T_CALLED("keyok(%d,%d)"), c, flag)); if (c >= 0) { int count = 0; char *s;