diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-07-01 17:17:36 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-07-01 17:17:36 +0300 |
commit | 1c3d107cb5367098d592b69d02beedd7aa9ded16 (patch) | |
tree | 3f7bb5ea2b8d6221de61110170bc0c59a9224189 | |
parent | 7e33618bbc07b65c36744db8e7ef219d2d942456 (diff) | |
download | emacs-1c3d107cb5367098d592b69d02beedd7aa9ded16.tar.gz emacs-1c3d107cb5367098d592b69d02beedd7aa9ded16.tar.bz2 emacs-1c3d107cb5367098d592b69d02beedd7aa9ded16.zip |
Fix "C-u C-x =" for SPC
* lisp/descr-text.el (describe-char): Don't report 'nobreak-space'
face for SPC. (Bug#56337)
-rw-r--r-- | lisp/descr-text.el | 1 |
1 files changed, 1 insertions, 0 deletions
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 |