X-Git-Url: https://ncurses.scripts.mit.edu/?p=ncurses.git;a=blobdiff_plain;f=ncurses%2Fbase%2FMKkeyname.awk;h=40eee2753e381e57913713d719632fe6c2787c3f;hp=e487038ddafdf27f2c4e44cd3423c084d5def3ab;hb=91fa4688e82518794fcf0c32a36f3fcca5e4c2d5;hpb=404cc3f5b0751dd219565139f825c5a4d445f651 diff --git a/ncurses/base/MKkeyname.awk b/ncurses/base/MKkeyname.awk index e487038d..40eee275 100644 --- a/ncurses/base/MKkeyname.awk +++ b/ncurses/base/MKkeyname.awk @@ -1,6 +1,6 @@ -# $Id: MKkeyname.awk,v 1.43 2009/05/09 19:01:49 tom Exp $ +# $Id: MKkeyname.awk,v 1.47 2012/02/22 22:35:41 tom Exp $ ############################################################################## -# Copyright (c) 1999-2008,2009 Free Software Foundation, Inc. # +# Copyright (c) 1999-2010,2012 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 "Software"), # @@ -31,7 +31,6 @@ BEGIN { print "" print "#include " print "#include " - print "#include " print "" first = 1; } @@ -101,17 +100,18 @@ END { print " if (MyTable[c] == 0) {" print " int cc = c;" print " p = name;" + print "#define P_LIMIT (sizeof(name) - (size_t) (p - name))" print " if (cc >= 128 && (sp == 0 || sp->_use_meta)) {" - print " strcpy(p, \"M-\");" + print " _nc_STRCPY(p, \"M-\", P_LIMIT);" print " p += 2;" print " cc -= 128;" print " }" print " if (cc < 32)" - print " sprintf(p, \"^%c\", cc + '@');" + print " _nc_SPRINTF(p, _nc_SLIMIT(P_LIMIT) \"^%c\", cc + '@');" print " else if (cc == 127)" - print " strcpy(p, \"^?\");" + print " _nc_STRCPY(p, \"^?\", P_LIMIT);" print " else" - print " sprintf(p, \"%c\", cc);" + print " _nc_SPRINTF(p, _nc_SLIMIT(P_LIMIT) \"%c\", cc);" print " MyTable[c] = strdup(name);" print " }" print " result = MyTable[c];" @@ -121,7 +121,7 @@ END { print " int j, k;" print " char * bound;" print " TERMTYPE *tp = &(TerminalOf(sp)->type);" - print " int save_trace = _nc_tracing;" + print " unsigned save_trace = _nc_tracing;" print "" print " _nc_tracing = 0; /* prevent recursion via keybound() */" print " for (j = 0; (bound = NCURSES_SP_NAME(keybound)(NCURSES_SP_ARGx c, j)) != 0; ++j) {"