mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-17 09:10:22 +02:00
lower-case hexadecimal digits again
* libguile/numbers.c: Default to lower-case hexadecimal digits again.
This commit is contained in:
parent
96fa68966d
commit
9b5fcde6f9
1 changed files with 1 additions and 1 deletions
|
@ -2160,7 +2160,7 @@ void init_fx_radix(double *fx_list, int radix)
|
|||
}
|
||||
|
||||
/* use this array as a way to generate a single digit */
|
||||
static const char*number_chars="0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
||||
static const char number_chars[] = "0123456789abcdefghijklmnopqrstuvwxyz";
|
||||
|
||||
static size_t
|
||||
idbl2str (double f, char *a, int radix)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue