[Vimpulse] Arrow keys don't work as motions

Nick Smallbone nick.smallbone at gmail.com
Sun Aug 22 22:51:49 CEST 2010


Štěpán Němec <stepnem at gmail.com> 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




More information about the implementations-list mailing list