git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@859 c06c8d41-db1a-0410-9941-cceddc491573
PR2LVM33MZJBAOQ5ZIQNX6CH4DPPG7JJLRCFAPTPLMXSKNJAGJQAC
// Protect the id array against being clobbered by a SIGHUP with the
// character in a shop.
extern id_arr shop_backup_id;
class shopping_hup_protect
{
public:
shopping_hup_protect() : shopping(crawl_state.shopping)
{
save_id(shop_backup_id);
crawl_state.shopping = true;
}
~shopping_hup_protect()
{
crawl_state.shopping = shopping;
}
private:
bool shopping;
};