summaryrefslogtreecommitdiff
path: root/lisp/international/latin-1.el
diff options
context:
space:
mode:
authorKenichi Handa <handa@m17n.org>2005-03-09 01:27:23 +0000
committerKenichi Handa <handa@m17n.org>2005-03-09 01:27:23 +0000
commitec4e909a0f4b15e64e39cd4c27a2a68a3453ec02 (patch)
treeacfc2c1823f4ab5556222f9587a5f5fe7f05378d /lisp/international/latin-1.el
parentca8d88cd7d73b571b1146c0d34d6fa6d35ba02ba (diff)
Set case and syntax for 255 only if
set-case-syntax-set-multibyte is nil.
Diffstat (limited to 'lisp/international/latin-1.el')
-rw-r--r--lisp/international/latin-1.el5
1 files changed, 4 insertions, 1 deletions
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 @@
(set-case-syntax-pair 222 254 tbl) ;latin letter thorn (Icelandic)
(set-case-syntax 223 "w" tbl) ;latin small letter sharp s (German)
(set-case-syntax 247 "_" tbl) ;division sign
- (set-case-syntax 255 "w" tbl)) ;latin small letter y with diaeresis
+ ;; The following setting should be suppressed when we are loading
+ ;; this file for setting syntax of multibyte characters.
+ (or set-case-syntax-set-multibyte
+ (set-case-syntax 255 "w" tbl))) ;latin small letter y with diaeresis
;; When preloading this file, don't provide the feature.
;; Explicit `require' is used to load this for 8-bit characters.