Remove RELEASE_DATE
authorJason Self <j@jxself.org>
Sat, 18 Apr 2020 19:53:53 +0000 (12:53 -0700)
committerJason Self <j@jxself.org>
Sat, 18 Apr 2020 19:57:24 +0000 (12:57 -0700)
src/errors.c
src/header.h
src/inform.c

index b76aa7d5658dbe9398b75280a5d9e228259ac73f..8a4d288f4b34a6800b2d277f59003e83ee90428e 100644 (file)
@@ -397,15 +397,12 @@ extern void link_error_named(char *s1, char *s2)
 extern void print_sorry_message(void)
 {   printf(
 "***********************************************************************\n\
-* 'Compiler errors' should never occur if Inform is working properly. *\n\
-* This is version %d.%02d of Inform, dated %20s: so      *\n\
-* if that was more than six months ago, there may be a more recent    *\n\
-* version available, from which the problem may have been removed.    *\n\
-* If not, please report this fault to:   graham@gnelson.demon.co.uk   *\n\
-* and if at all possible, please include your source code, as faults  *\n\
-* such as these are rare and often difficult to reproduce.  Sorry.    *\n\
-***********************************************************************\n",
-    (RELEASE_NUMBER/100)%10, RELEASE_NUMBER%100, RELEASE_DATE);
+Compiler errors should never occur if Inform is working properly.\n\
+Check to see if there is a more recent version available, from which\n\
+the problem may have been removed. If not, please report this fault\n\
+and if at all possible, please include your source code, as faults\n\
+such as these are rare and often difficult to reproduce. Sorry.\n\
+***********************************************************************\n");
 }
 
 extern int compiler_error(char *s)
index 3faa6a45849413cca2b28404f26b1e35a245a5a8..66c57cfb32d3e20123352d354917c55073cf063a 100644 (file)
@@ -32,7 +32,6 @@
 /*                                                                           */
 /* ------------------------------------------------------------------------- */
 
-#define RELEASE_DATE "28th June 2018"
 #define RELEASE_NUMBER 1634
 #define GLULX_RELEASE_NUMBER 38
 #define MODULE_VERSION_NUMBER 1
index 8888077c9addfa4aa4ba9726381dd6590a9a3762..ac8db8ecf352c0aeaba633d9afb776ea4c08d8c5 100644 (file)
@@ -1752,7 +1752,6 @@ static void banner(void)
 #ifdef MACHINE_STRING
     sprintf(banner_line+strlen(banner_line), " for %s", MACHINE_STRING);
 #endif
-    sprintf(banner_line+strlen(banner_line), " (%s)", RELEASE_DATE);
     printf("%s\n", banner_line);
 }