Branch: Tag:

1996-09-24

1996-09-24 23:46:53 by Fredrik Hübinette (Hubbe) <hubbe@hubbe.net>

isspace -> ISSPACE, subtype=-1 -> subtype=USHRT_MAX

Rev: src/array.c:1.2
Rev: src/builtin_functions.c:1.3
Rev: src/configure.in:1.4
Rev: src/constants.c:1.2
Rev: src/docode.c:1.2
Rev: src/interpret.c:1.3
Rev: src/las.c:1.3
Rev: src/lex.c:1.3
Rev: src/machine.h.in:1.3
Rev: src/pike_types.c:1.2
Rev: src/port.c:1.3
Rev: src/port.h:1.5
Rev: src/signal_handler.c:1.3
Rev: src/svalue.c:1.2
Rev: src/svalue.h:1.3
Rev: src/types.h:1.3

484:    if(sp[-args].type != T_FUNCTION)    error("Bad argument 1 to function_object.\n");    -  if(sp[-args].subtype == -1) +  if(sp[-args].subtype == FUNCTION_BUILTIN)    {    pop_n_elems(args);    push_int(0);
502:    if(sp[-args].type != T_FUNCTION)    error("Bad argument 1 to function_object.\n");    -  if(sp[-args].subtype == -1) +  if(sp[-args].subtype == FUNCTION_BUILTIN)    {    pop_n_elems(args);    push_int(0);
1124:   {    if(args<1) error("Too few arguments to functionp.\n");    if(sp[-args].type != T_FUNCTION || -  (sp[-args].subtype != -1 && !sp[-args].u.object->prog)) +  (sp[-args].subtype != FUNCTION_BUILTIN && !sp[-args].u.object->prog))    {    pop_n_elems(args);    push_int(0);