Function: max-char
max-char is a function defined in character.c.
Signature
(max-char &optional UNICODE)
Documentation
Return the maximum character code.
If UNICODE is non-nil, return the maximum character code defined by the Unicode Standard.
Probably introduced at or before Emacs version 23.1.
Source Code
// Defined in /usr/src/emacs/src/character.c
{
return (!NILP (unicode)
? make_fixnum (MAX_UNICODE_CHAR)
: make_fixnum (MAX_CHAR));
}