X-Git-Url: https://jxself.org/git/?a=blobdiff_plain;f=src%2Fsymbols.c;h=d2f42dac576c4c2d7e01a8ca89b9fd074c9fc173;hb=8760c1ba6442153afe76bcac742e086f90c59fe8;hp=326316651af503cb2237cdd5bf86f6e72f3e8160;hpb=81ffe9a7de1db0b3a318a053b38882d1b7ab304c;p=inform.git diff --git a/src/symbols.c b/src/symbols.c index 3263166..d2f42da 100644 --- a/src/symbols.c +++ b/src/symbols.c @@ -1,9 +1,8 @@ /* ------------------------------------------------------------------------- */ /* "symbols" : The symbols table; creating stock of reserved words */ /* */ -/* Copyright (c) Graham Nelson 1993 - 2018 */ -/* */ -/* This file is part of Inform. */ +/* Part of Inform 6.35 */ +/* copyright (c) Graham Nelson 1993 - 2020 */ /* */ /* Inform is free software: you can redistribute it and/or modify */ /* it under the terms of the GNU General Public License as published by */ @@ -16,7 +15,7 @@ /* GNU General Public License for more details. */ /* */ /* You should have received a copy of the GNU General Public License */ -/* along with Inform. If not, see https://gnu.org/licenses/ */ +/* along with Inform. If not, see https://gnu.org/licenses/ * /* */ /* ------------------------------------------------------------------------- */ @@ -297,6 +296,7 @@ extern char *typename(int type) case LABEL_T: return("Label"); case GLOBAL_VARIABLE_T: return("Global variable"); case ARRAY_T: return("Array"); + case STATIC_ARRAY_T: return("Static array"); case CONSTANT_T: return("Defined constant"); case ATTRIBUTE_T: return("Attribute"); case PROPERTY_T: return("Property");