diff options
| author | Kenichi Handa | 2005-03-09 01:27:23 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2005-03-09 01:27:23 +0000 |
| commit | ec4e909a0f4b15e64e39cd4c27a2a68a3453ec02 (patch) | |
| tree | acfc2c1823f4ab5556222f9587a5f5fe7f05378d | |
| parent | ca8d88cd7d73b571b1146c0d34d6fa6d35ba02ba (diff) | |
| download | emacs-ec4e909a0f4b15e64e39cd4c27a2a68a3453ec02.tar.gz emacs-ec4e909a0f4b15e64e39cd4c27a2a68a3453ec02.zip | |
Set case and syntax for 255 only if
set-case-syntax-set-multibyte is nil.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/international/latin-1.el | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 34e01b40854..b245d602e14 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2005-03-09 Kenichi Handa <handa@m17n.org> | 1 | 2005-03-09 Kenichi Handa <handa@m17n.org> |
| 2 | 2 | ||
| 3 | * international/latin-1.el: Set case and syntax for 255 only if | ||
| 4 | set-case-syntax-set-multibyte is nil. | ||
| 5 | |||
| 3 | * textmodes/ispell.el (ispell-insert-word): New function. | 6 | * textmodes/ispell.el (ispell-insert-word): New function. |
| 4 | (ispell-word): Use ispell-insert-word to isnert a new word. | 7 | (ispell-word): Use ispell-insert-word to isnert a new word. |
| 5 | (ispell-process-line): Likewise | 8 | (ispell-process-line): Likewise |
diff --git a/lisp/international/latin-1.el b/lisp/international/latin-1.el index 3c30ba0721b..610ed1cb9f1 100644 --- a/lisp/international/latin-1.el +++ b/lisp/international/latin-1.el | |||
| @@ -104,7 +104,10 @@ | |||
| 104 | (set-case-syntax-pair 222 254 tbl) ;latin letter thorn (Icelandic) | 104 | (set-case-syntax-pair 222 254 tbl) ;latin letter thorn (Icelandic) |
| 105 | (set-case-syntax 223 "w" tbl) ;latin small letter sharp s (German) | 105 | (set-case-syntax 223 "w" tbl) ;latin small letter sharp s (German) |
| 106 | (set-case-syntax 247 "_" tbl) ;division sign | 106 | (set-case-syntax 247 "_" tbl) ;division sign |
| 107 | (set-case-syntax 255 "w" tbl)) ;latin small letter y with diaeresis | 107 | ;; The following setting should be suppressed when we are loading |
| 108 | ;; this file for setting syntax of multibyte characters. | ||
| 109 | (or set-case-syntax-set-multibyte | ||
| 110 | (set-case-syntax 255 "w" tbl))) ;latin small letter y with diaeresis | ||
| 108 | 111 | ||
| 109 | ;; When preloading this file, don't provide the feature. | 112 | ;; When preloading this file, don't provide the feature. |
| 110 | ;; Explicit `require' is used to load this for 8-bit characters. | 113 | ;; Explicit `require' is used to load this for 8-bit characters. |