| summaryrefslogtreecommitdiff |
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2016-09-21 03:13:47 +0200 |
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2016-09-21 03:13:47 +0200 |
| commit | 7e8cb867ba9ca9d0f533a8329712117ba38115a6 (patch) | |
| tree | 5d28846ab9b0946ccaf14bc530dbf36533b6bde9 /src/core/knowledge.c | |
| parent | 8994c7b5cf56f540c71c763173a8927569ba94b3 (diff) | |
Fixes "No back sequence" + forbids name as pillar.
Diffstat (limited to 'src/core/knowledge.c')
| -rw-r--r-- | src/core/knowledge.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/knowledge.c b/src/core/knowledge.c index a2bf708..4980fdd 100644 --- a/src/core/knowledge.c +++ b/src/core/knowledge.c @@ -10,8 +10,8 @@ /** Basic functions of the ZoO_knowledge structure ****************************/ /* XXX: are we as close to immutable as we want to be? */ -unsigned int const ZoO_knowledge_punctuation_chars_count = 7; -const ZoO_char const ZoO_knowledge_punctuation_chars[7] = +unsigned int const ZoO_knowledge_punctuation_chars_count = 8; +const ZoO_char const ZoO_knowledge_punctuation_chars[8] = { '!', ',', @@ -19,7 +19,8 @@ const ZoO_char const ZoO_knowledge_punctuation_chars[7] = ':', ';', '?', - '~' + '~', + '\001' }; /* XXX: are we as close to immutable as we want to be? */ |


