]> granicus.if.org Git - nethack/commitdiff
punctuation in failed messages
authornhmall <mjnh@persona.ca>
Fri, 12 Jun 2015 01:11:41 +0000 (21:11 -0400)
committernhmall <mjnh@persona.ca>
Fri, 12 Jun 2015 01:11:41 +0000 (21:11 -0400)
src/end.c

index c119cbb82f63363e53a413a95cf1117994ab21f4..d5b8e4ed62bd45622bed2b30ec8853b6489df4a0 100644 (file)
--- a/src/end.c
+++ b/src/end.c
@@ -1,4 +1,4 @@
-/* NetHack 3.6 end.c   $NHDT-Date: 1432512762 2015/05/25 00:12:42 $  $NHDT-Branch: master $:$NHDT-Revision: 1.98 $ */
+/* NetHack 3.6 end.c   $NHDT-Date: 1434071495 2015/06/12 01:11:35 $  $NHDT-Branch: master $:$NHDT-Revision: 1.99 $ */
 /* Copyright (c) Stichting Mathematisch Centrum, Amsterdam, 1985. */
 /* NetHack may be freely redistributed.  See license for details. */
 
@@ -539,21 +539,21 @@ VA_DECL(const char *, str)
 #else
     if (!wizard) {
         if (sysopt.support)
-            raw_printf("To report this error, %s%s.", sysopt.support,
+            raw_printf("To report this error, %s%s", sysopt.support,
                        !program_state.something_worth_saving
-                           ? ""
+                           ? "."
                            : " and it may be possible to rebuild.");
         else if (sysopt.wizards) {
             char *tmp = build_english_list(sysopt.wizards);
             raw_printf("To report this error, contact %s%s", tmp,
                        !program_state.something_worth_saving
-                           ? ""
+                           ? "."
                            : " and it may be possible to rebuild.");
             free(tmp);
         } else
-            raw_printf("Report error to \"%s\"%s.", WIZARD_NAME,
+            raw_printf("Report error to \"%s\"%s", WIZARD_NAME,
                        !program_state.something_worth_saving
-                           ? ""
+                           ? "."
                            : " and it may be possible to rebuild.");
     }
 #endif