From 951ee70ee3eb313e9e46376d5adacdb1e694172c Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sun, 16 Aug 2026 10:28:18 +0300 Subject: [PATCH] ; * lisp/simple.el (char-uppercase-p): Fix a typo. Reported by Lele Gaifax . --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 5b7f5f30058..21a4ae65b40 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -6684,7 +6684,7 @@ and KILLP is t if a prefix arg was specified." (defun char-uppercase-p (char) "Return non-nil if CHAR is an upper-case character. -A character is considered upper-case if there's a correspoding +A character is considered upper-case if there's a corresponding lower-case character. If the Unicode tables are not yet available, e.g. during bootstrap, this function gives correct return values only for ASCII characters."