if (!otmp) {
impossible("simple_look(null)");
} else if (!(here ? otmp->nexthere : otmp->nobj)) {
- pline("%s", doname(otmp));
+ pline1(doname(otmp));
} else {
winid tmpwin = create_nhwindow(NHW_MENU);
putstr(tmpwin, 0, "");
/* out-only or out before in */
if (loot_out && !loot_in_first) {
if (!Has_contents(current_container)) {
- pline("%s", emptymsg); /* <whatever> is empty. */
+ pline1(emptymsg); /* <whatever> is empty. */
if (!current_container->cknown) used = 1;
current_container->cknown = 1;
} else {
/* out after in */
if (loot_out && loot_in_first) {
if (!Has_contents(current_container)) {
- pline("%s", emptymsg); /* <whatever> is empty. */
+ pline1(emptymsg); /* <whatever> is empty. */
if (!current_container->cknown) used = 1;
current_container->cknown = 1;
} else {
else if (cobj->otyp == STATUE)
pline("Nothing interesting happens.");
else
- pline(nothing_happens);
+ pline1(nothing_happens);
return 0;
}