*** empty log message ***

This commit is contained in:
hyung-hwan 2006-10-19 11:08:54 +00:00
parent fac51ebdbc
commit 8cd3d7fab0
2 changed files with 2 additions and 6 deletions

View File

@ -1,5 +1,5 @@
/* /*
* $Id: parse.c,v 1.190 2006-10-15 15:45:41 bacon Exp $ * $Id: parse.c,v 1.191 2006-10-19 11:08:54 bacon Exp $
*/ */
#include <xp/awk/awk_i.h> #include <xp/awk/awk_i.h>
@ -259,10 +259,8 @@ struct __bvent
static struct __bvent __bvtab[] = static struct __bvent __bvtab[] =
{ {
{ XP_T("ARGC"), 4, 0 }, { XP_T("ARGC"), 4, 0 },
{ XP_T("ARGIND"), 6, 0 },
{ XP_T("ARGV"), 4, 0 }, { XP_T("ARGV"), 4, 0 },
{ XP_T("CONVFMT"), 7, 0 }, { XP_T("CONVFMT"), 7, 0 },
{ XP_T("FIELDWIDTHS"), 11, 0 },
{ XP_T("ENVIRON"), 7, 0 }, { XP_T("ENVIRON"), 7, 0 },
{ XP_T("ERRNO"), 5, 0 }, { XP_T("ERRNO"), 5, 0 },
{ XP_T("FILENAME"), 8, 0 }, { XP_T("FILENAME"), 8, 0 },

View File

@ -1,5 +1,5 @@
/* /*
* $Id: run.h,v 1.17 2006-09-08 15:26:49 bacon Exp $ * $Id: run.h,v 1.18 2006-10-19 11:08:54 bacon Exp $
*/ */
#ifndef _XP_AWK_RUN_H_ #ifndef _XP_AWK_RUN_H_
@ -80,10 +80,8 @@ enum
* on the order of these values */ * on the order of these values */
XP_AWK_GLOBAL_ARGC, XP_AWK_GLOBAL_ARGC,
XP_AWK_GLOBAL_ARGIND,
XP_AWK_GLOBAL_ARGV, XP_AWK_GLOBAL_ARGV,
XP_AWK_GLOBAL_CONVFMT, XP_AWK_GLOBAL_CONVFMT,
XP_AWK_GLOBAL_FIELDWIDTHS,
XP_AWK_GLOBAL_ENVIRON, XP_AWK_GLOBAL_ENVIRON,
XP_AWK_GLOBAL_ERRNO, XP_AWK_GLOBAL_ERRNO,
XP_AWK_GLOBAL_FILENAME, XP_AWK_GLOBAL_FILENAME,