]> git.eshelyaron.com Git - emacs.git/commit
Fix yes-or-no-p with multibyte spaces
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 17 Sep 2024 22:22:02 +0000 (15:22 -0700)
committerEshel Yaron <me@eshelyaron.com>
Wed, 18 Sep 2024 10:49:21 +0000 (12:49 +0200)
commit90c84c728e5200e521b5c02a3c40763bd80ef4a3
tree97fe36ae20f87fd92687ccb10efbb652b6e7b4d3
parent468b6d0d71894edb224c71e31c26ce1d1a910472
Fix yes-or-no-p with multibyte spaces

Problem reported by Thomas Klausner (Bug#73307).
Emacs shouldn’t use ctype.h, as it doesn’t work for multibyte
chars and it doesn’t work with Emacs’s locale model anyway.
* src/fns.c: Include syntax.h, not ctype.h.
(Fyes_or_no_p): Check the character category with SYNTAX, not
with isspace, which assumes the current locale and works only
with single-byte characters.

(cherry picked from commit 43cde03fa5a663a1509a762077c11eb57a60cee8)
src/fns.c