From d3f2ed4e4746bc5feec598aa876ca3fcd91c4362 Mon Sep 17 00:00:00 2001 From: nhmall Date: Fri, 1 May 2026 13:09:49 -0400 Subject: [PATCH 1/2] Guidebook.tex fix --- doc/Guidebook.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Guidebook.tex b/doc/Guidebook.tex index 2c9ee2677..454bbee4b 100644 --- a/doc/Guidebook.tex +++ b/doc/Guidebook.tex @@ -1079,7 +1079,7 @@ Use `\texttt{V}' for that now. Display version number. \\ %.lp "" -`\texttt{V' used to display a summary of the game's history. +`\texttt{V}' used to display a summary of the game's history. Still available via \texttt{\#history}. %.lp \item[w] From e35af92d13ba1d45ff6937583097f9444bb4db71 Mon Sep 17 00:00:00 2001 From: Alex Smith Date: Fri, 1 May 2026 21:41:40 +0100 Subject: [PATCH 2/2] Fix the fix to the pricequotes option It was displaying price quotes even with the option off, when removing items from a container. --- src/objnam.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/objnam.c b/src/objnam.c index cd50e0bb5..983741cf8 100644 --- a/src/objnam.c +++ b/src/objnam.c @@ -1673,7 +1673,7 @@ doname_base( nochrg ? "contents" : "for sale", pricebuf); } else if (nochrg > 0) { Concat(bp, 0, " (no charge)"); - } else { + } else if (iflags.pricequotes && !objects[obj->otyp].oc_name_known) { append_price_quote(bp, &bp_eos, obj->otyp); }