Branch: Tag:

2008-01-05

2008-01-05 20:10:41 by Henrik Grubbström (Grubba) <grubba@grubba.org>

Fixed another typo.

Rev: src/language.yacc:1.404

2:   || This file is part of Pike. For copyright information see COPYRIGHT.   || Pike is distributed under GPL, LGPL and MPL. See the file COPYING   || for more information. - || $Id: language.yacc,v 1.403 2008/01/05 20:09:46 grubba Exp $ + || $Id: language.yacc,v 1.404 2008/01/05 20:10:41 grubba Exp $   */      %pure_parser
156:   int add_local_name(struct pike_string *, struct pike_type *, node *);   int low_add_local_name(struct compiler_frame *,    struct pike_string *, struct pike_type *, node *); - static mark_lvalues_as_used(node *n); + static void mark_lvalues_as_used(node *n);   static node *lexical_islocal(struct pike_string *);   static void safe_inc_enum(void);   static int call_handle_import(struct pike_string *s);
4367:   }      /* Mark local variables declared in a multi-assign expression as used. */ - static mark_lvalues_as_used(node *n) + static void mark_lvalues_as_used(node *n)   {    while (n && n->token == F_LVALUE_LIST) {    if (CAR(n)->token == F_ARRAY_LVALUE) {