]> granicus.if.org Git - nethack/commitdiff
fix #H2785 - engraving punctuation
authornethack.rankin <nethack.rankin>
Wed, 19 Dec 2012 01:26:54 +0000 (01:26 +0000)
committernethack.rankin <nethack.rankin>
Wed, 19 Dec 2012 01:26:54 +0000 (01:26 +0000)
     Message tidbit when engraving with a weapon which becomes too dull to
finish the whole text:  add missing final period to
  You are only able to write "<partial text>".
I think that proper usage puts the period in front of the quote rather than
after, but that could make it look as if the period ended up inside the
partial engraving.

doc/fixes35.0
src/engrave.c

index a203d3bc532ba7e5ca3f94b38ef277bb22575263..cdd75913c96f84afc331da241c8472ab05f7f90d 100644 (file)
@@ -845,6 +845,8 @@ very fast hero would sometimes take two consecutive moves with very fast
 when a monster zapped by polymorph drops inventory because of its new form,
        don't let that same zap hit the dropped item(s)
 entering an untended shop while blind gave an inappropriate message
+engraving feedback about partial text when weapon became too dull to finish
+       was lacking sentence-ending period
 
 
 Platform- and/or Interface-Specific Fixes
index 5480fb39c301d4a27905a8c951206f705e63db97..2efb1251e3ba7fcbc1d1094f27455dcf4a790f37 100644 (file)
@@ -1115,7 +1115,7 @@ doengrave()
            if (!maxelen && *sp) {
                *sp = (char)0;
                if (multi) nomovemsg = "You cannot write any more.";
-               You("only are able to write \"%s\"", ebuf);
+               You("only are able to write \"%s\".", ebuf);
            }
        }