pike.git/
src/
program.c
Branch:
Tag:
Non-build tags
All tags
No tags
2008-02-06
2008-02-06 18:29:09 by Henrik Grubbström (Grubba) <grubba@grubba.org>
fb9db18a76386034179421c8d67f32e7c9e4c45a (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Adding aliases for variables is now encode_value()-safe...
Rev: src/program.c:1.649
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: program.c,v 1.
648
2008/02/
03
19
:
38
:
18
grubba Exp $
+
|| $Id: program.c,v 1.
649
2008/02/
06
18
:
29
:
09
grubba Exp $
*/ #include "global.h"
4842:
* can change the compile-time type. */ n2 = define_alias(name, type, flags & ~ID_EXTERN, 0, n);
-
/* Hide the old variable
and make it local
. */
+
/* Hide the old variable. */
Pike_compiler->new_program->identifier_references[n].id_flags |=
-
ID_HIDDEN
|ID_INLINE
;
+
ID_HIDDEN;
return n2; } }