1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-13 06:50:39 -08:00

Set syntax of NBSP to punctuation.

This commit is contained in:
Kenichi Handa 2005-04-21 05:57:27 +00:00
parent db349d6cd2
commit db92e81ec1

View file

@ -441,7 +441,10 @@
;; reviewed. (Note that the following all implicitly have word
;; syntax: ¢£¤¥¨ª¯²³´¶¸¹º.) There should be a well-defined way of
;; relating Unicode categories to Emacs syntax codes.
(set-case-syntax ?  " " tbl) ; dubious
;; NBSP isn't semantically interchangeable with other whitespace chars,
;; so it's more like punctation.
(set-case-syntax ?  "." tbl)
(set-case-syntax "." tbl)
(set-case-syntax "_" tbl)
(set-case-syntax "." tbl)