Alejandro Colomar 44126d85ee Remove definition of ISDIGIT_LOCALE(c)
It wasn't being used at all.  Let's remove it.

Use isdigit(3) directly in comments that referenced it.

Also, in those comments, remove an outdated reference to the fact
that ISDIGIT_LOCALE(c) might evaluate its argument more than once,
which could be true a few commits ago, until
IN_CTYPE_DEFINITION(c) was removed.  Previously, the definition
for ISDIGIT_LOCALE(c) was:

 #if defined (STDC_HEADERS) || (!defined (isascii) && !defined (HAVE_ISASCII))
 # define IN_CTYPE_DOMAIN(c) 1
 #else
 # define IN_CTYPE_DOMAIN(c) isascii(c)
 #endif

 #define ISDIGIT_LOCALE(c) (IN_CTYPE_DOMAIN (c) && isdigit (c))

Which could evaluate 'c' twice on pre-C89 systems (which I hope
don't exist nowadays).

Signed-off-by: Alejandro Colomar <alx.manpages@gmail.com>
2021-12-29 02:41:09 +01:00
..
2020-01-12 07:31:26 -06:00
2021-12-23 15:18:07 -06:00
2021-12-27 20:50:13 +01:00
2021-04-16 21:02:37 -05:00
2021-12-23 15:18:07 -06:00
2021-07-14 12:13:25 +02:00
2021-08-18 18:06:02 +00:00
2021-08-18 18:06:02 +00:00
2021-06-24 09:18:35 +02:00
2021-02-01 22:11:10 +01:00
2021-12-23 15:18:07 -06:00
2021-06-16 09:50:53 +02:00