# HG changeset patch # User Kenichi Handa # Date 1110331629 0 # Node ID 9d834e1613df3136f8a2c5ff0cb1ef4dd912cb9b # Parent ad828b7dfd472ffef20e3b605ab00fd36e2f8bf5 Set case and syntax for 255 only if set-case-syntax-set-multibyte is nil. diff -r ad828b7dfd47 -r 9d834e1613df lisp/international/latin-1.el --- a/lisp/international/latin-1.el Wed Mar 09 00:36:22 2005 +0000 +++ b/lisp/international/latin-1.el Wed Mar 09 01:27:09 2005 +0000 @@ -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.