From 83f432780a89718de95d41166db8a6eef22e2eee Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Thu, 28 Feb 2019 05:18:04 -0500 Subject: [PATCH] Remove use of Unicode number sign in comments. "#" for this use is well established in English. It's not worth opening the i18n can of worms here. --- advent.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/advent.h b/advent.h index b79229a..4808daf 100644 --- a/advent.h +++ b/advent.h @@ -13,11 +13,11 @@ #define LCG_M 1048576L #define LINESIZE 1024 -#define TOKLEN 5 // № sigificant characters in a token */ +#define TOKLEN 5 // # sigificant characters in a token */ #define NDWARVES 6 // number of dwarves #define PIRATE NDWARVES // must be NDWARVES-1 when zero-origin #define DALTLC LOC_NUGGET // alternate dwarf location -#define INVLIMIT 7 // inventory limit (№ of objects) +#define INVLIMIT 7 // inventory limit (# of objects) #define INTRANSITIVE -1 // illegal object number #define GAMELIMIT 330 // base limit of turns #define NOVICELIMIT 1000 // limit of turns for novice -- 2.31.1