pike.git/
src/
program.c
Branch:
Tag:
Non-build tags
All tags
No tags
2003-12-30
2003-12-30 10:02:46 by Henrik Grubbström (Grubba) <grubba@grubba.org>
46d25b5e9c116c753d4dd451acbf3b7804728ae3 (
12
lines) (+
6
/-
6
)
[
Show
|
Annotate
]
Branch:
7.9
low_find_lfun() now only filters prototypes.
Rev: src/program.c:1.544
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.
543
2003/12/30
09
:
56
:
28
grubba Exp $
+
|| $Id: program.c,v 1.
544
2003/12/30
10
:
02
:
46
grubba Exp $
*/ #include "global.h"
-
RCSID("$Id: program.c,v 1.
543
2003/12/30
09
:
56
:
28
grubba Exp $");
+
RCSID("$Id: program.c,v 1.
544
2003/12/30
10
:
02
:
46
grubba Exp $");
#include "program.h" #include "object.h" #include "dynamic_buffer.h"
5017:
SEE_STATIC); if (i < 0) return i; id = ID_FROM_INT(p, i);
-
if (
!
IDENTIFIER_IS_
FUNCTION(id->identifier_flags) ||
-
(IDENTIFIER_IS_
PIKE_FUNCTION(id->identifier_flags) &&
-
id->func.offset == -1)) {
-
/*
Non
function or
prototype. */
+
if (IDENTIFIER_IS_PIKE_FUNCTION(id->identifier_flags) &&
+
(
id->func.offset == -1)) {
+
/*
Function
prototype. */
return -1; } return i;