Inform7 is capable of overflowing the text (output) buffer by cramming
it with a maximum of 263 bytes. This was discovered by pushing the
limits of the Inform7 compiler. Inform6 won't do this, even if it's
told to print text far exceeding 263 bytes.
This overflow situation is not a security problem because the VM catches
it and aborts. I am unsure if it's a good idea to truncate the attempt
to overfill the buffer and continue.
#define MAX_FILE_NAME 80
#endif
#ifndef TEXT_BUFFER_SIZE
-#define TEXT_BUFFER_SIZE 200
+#define TEXT_BUFFER_SIZE 275
#endif
#ifndef INPUT_BUFFER_SIZE
#define INPUT_BUFFER_SIZE 200