From: nethack.rankin Date: Wed, 19 Dec 2012 01:26:54 +0000 (+0000) Subject: fix #H2785 - engraving punctuation X-Git-Tag: MOVE2GIT~9 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aebb5949f78a4c0af905bf72b26917f7aae122dc;p=nethack fix #H2785 - engraving punctuation 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 "". 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. --- diff --git a/doc/fixes35.0 b/doc/fixes35.0 index a203d3bc5..cdd75913c 100644 --- a/doc/fixes35.0 +++ b/doc/fixes35.0 @@ -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 diff --git a/src/engrave.c b/src/engrave.c index 5480fb39c..2efb1251e 100644 --- a/src/engrave.c +++ b/src/engrave.c @@ -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); } }