From 1c3d107cb5367098d592b69d02beedd7aa9ded16 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Fri, 1 Jul 2022 17:17:36 +0300 Subject: [PATCH] Fix "C-u C-x =" for SPC * lisp/descr-text.el (describe-char): Don't report 'nobreak-space' face for SPC. (Bug#56337) --- lisp/descr-text.el | 1 + 1 file changed, 1 insertion(+) diff --git a/lisp/descr-text.el b/lisp/descr-text.el index 4234deb73af..7427817a8ec 100644 --- a/lisp/descr-text.el +++ b/lisp/descr-text.el @@ -690,6 +690,7 @@ The character information includes: (looking-at-p "[ \t]+$"))) 'trailing-whitespace) ((and nobreak-char-display char + (> char 127) (eq (get-char-code-property char 'general-category) 'Zs)) 'nobreak-space) ((and nobreak-char-display char