aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2005-09-14 15:37:39 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2005-09-14 15:37:39 +0000
commit507fe2765c42d659c217a308e98cdad288cdf80d (patch)
treeb1913fc9960ddea72e6fed61fec02a50f447d05d
parentef77e8e73a956d8853899f4b768e4e03b3b696d7 (diff)
downloadcflow-507fe2765c42d659c217a308e98cdad288cdf80d.tar.gz
cflow-507fe2765c42d659c217a308e98cdad288cdf80d.tar.bz2
(include_symbol): Ignore keywords.
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 296a62d..4bd1a6f 100644
--- a/src/main.c
+++ b/src/main.c
@@ -600,7 +600,7 @@ include_symbol(Symbol *sym)
{
int type = 0;
- if (!sym)
+ if (!sym || sym->type == SymToken)
return 0;
if (sym->name[0] == '_' && !included_char('_'))

Return to:

Send suggestions and report system problems to the System administrator.