From 1ee02a2273a10cc30d5dd5e07be1e5ee6a392e55 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" Date: Sun, 15 Oct 2017 01:18:55 -0700 Subject: 4068 --- html/subx/010core.cc.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'html/subx') diff --git a/html/subx/010core.cc.html b/html/subx/010core.cc.html index 828a5b90..75843a12 100644 --- a/html/subx/010core.cc.html +++ b/html/subx/010core.cc.html @@ -249,11 +249,11 @@ if ('onhashchange' in window) { 186 ¦ ¦ } 187 ¦ } 188 ¦ if (c >= '0' && c <= '9') return c; -189 ¦ else if (c >= 'a' && c <= 'f') return c; -190 ¦ else if (c >= 'A' && c <= 'F') return tolower(c); +189 ¦ if (c >= 'a' && c <= 'f') return c; +190 ¦ if (c >= 'A' && c <= 'F') return tolower(c); 191 ¦ // disallow any non-hex characters, including a '0x' prefix 192 ¦ if (!isspace(c)) { -193 ¦ ¦ raise << "invalid non-hex character '" << c << "'\n" << end(); +193 ¦ ¦ raise << "invalid non-hex character " << NUM(c) << "\n" << end(); 194 ¦ ¦ break; 195 ¦ } 196 } -- cgit 1.4.1-2-gfad0