diff options
| -rw-r--r-- | lisp/international/characters.el | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/international/characters.el b/lisp/international/characters.el index 3fc12306a30..a8eeb2e4859 100644 --- a/lisp/international/characters.el +++ b/lisp/international/characters.el | |||
| @@ -441,7 +441,10 @@ | |||
| 441 | ;; reviewed. (Note that the following all implicitly have word | 441 | ;; reviewed. (Note that the following all implicitly have word |
| 442 | ;; syntax: ¢£¤¥¨ª¯²³´¶¸¹º.) There should be a well-defined way of | 442 | ;; syntax: ¢£¤¥¨ª¯²³´¶¸¹º.) There should be a well-defined way of |
| 443 | ;; relating Unicode categories to Emacs syntax codes. | 443 | ;; relating Unicode categories to Emacs syntax codes. |
| 444 | (set-case-syntax ? " " tbl) ; dubious | 444 | |
| 445 | ;; NBSP isn't semantically interchangeable with other whitespace chars, | ||
| 446 | ;; so it's more like punctation. | ||
| 447 | (set-case-syntax ? "." tbl) | ||
| 445 | (set-case-syntax ?¡ "." tbl) | 448 | (set-case-syntax ?¡ "." tbl) |
| 446 | (set-case-syntax ?¦ "_" tbl) | 449 | (set-case-syntax ?¦ "_" tbl) |
| 447 | (set-case-syntax ?§ "." tbl) | 450 | (set-case-syntax ?§ "." tbl) |