From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason at zx2c4.com (Jason A. Donenfeld) Date: Sun, 7 Apr 2013 13:05:40 +0200 Subject: [PATCH 02/19] Remove redundant calls to fmt("%s", ...) In-Reply-To: <55887ea74c707fbc83f9a6e2527b18c9566b7198.1365326321.git.john@keeping.me.uk> References: <55887ea74c707fbc83f9a6e2527b18c9566b7198.1365326321.git.john@keeping.me.uk> Message-ID: On Sun, Apr 7, 2013 at 11:29 AM, John Keeping wrote: > - ctx.page.filename = fmt("%s", path); > + ctx.page.filename = "%s"; These aren't exactly equivalent. Is there something I'm missing here (I'm going through this patch set linearly.)?