Štěpán Němec <[email protected]> writes: > Is the `characterp' -> `integerp' change really necessary? On XEmacs, > (integerp ?\C-0) => nil, although the integer <--> character arithmetic > (`-', `logand') works the same as in GNU Emacs.
On GNU Emacs it's the other way round: (characterp ?\C-0) => nil, but (integerp ?\C-0) => t. What if we changed it to use (or (characterp char) (integerp char)) instead? Nick _______________________________________________ implementations-list mailing list [email protected] https://lists.ourproject.org/cgi-bin/mailman/listinfo/implementations-list
