]> git.eshelyaron.com Git - emacs.git/commit
Port hexdigit init to non-GCC + pdumper
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 15 Nov 2019 09:28:33 +0000 (01:28 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 15 Nov 2019 09:29:52 +0000 (01:29 -0800)
commite68912ea6be6338f3ca659cb01ec2bd616e8e660
tree2470eb062276645228c38814da639313c9630c7f
parent0114bb964afd81b6a6dc8c742bceba61d0f2a7dc
Port hexdigit init to non-GCC + pdumper

The old code assumed that hexdigit initialization (needed by
non-GCC) could be done in syms_of_character, but that is no longer
true with pdumper.  Instead, simplify hexdigit init so that it can
be done statically on all C99 platforms.  Problem discovered on
Solaris 10 sparc + Oracle Solaris Studio 12.6.
* src/character.c (hexdigit): Add 1 to every value; all uses
changed.  This simplifies the initialization so that it can be
done statically on any C99 compiler.  hexdigit is now always const.
(syms_of_character): Omit no-longer-necessary initialization.
* src/character.h (HEXDIGIT_CONST, HEXDIGIT_IS_CONST):
Remove.  All uses removed.
src/character.c
src/character.h