Created
June 19, 2016 13:27
-
-
Save ilmari/96755c0612e681d28045880795a3d56a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(defface nbsp-space | |
'((t (:foreground "green" :bold t))) | |
"Used for displaying the nbsp character") | |
(if standard-display-table | |
() | |
(setq standard-display-table (make-display-table))) | |
(aset standard-display-table | |
(make-char 'latin-iso8859-1 (- ?\240 128)) | |
(vector (+ ?\267 (* 524288 (face-id 'nbsp-space))))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment