]> git.eshelyaron.com Git - emacs.git/commitdiff
Set case and syntax for 255 only if
authorKenichi Handa <handa@m17n.org>
Wed, 9 Mar 2005 01:27:23 +0000 (01:27 +0000)
committerKenichi Handa <handa@m17n.org>
Wed, 9 Mar 2005 01:27:23 +0000 (01:27 +0000)
set-case-syntax-set-multibyte is nil.

lisp/ChangeLog
lisp/international/latin-1.el

index 34e01b4085458ae3878061dcd3695b108bf23c39..b245d602e14e4b06ce6d9038a6b59a35bf4bc310 100644 (file)
@@ -1,5 +1,8 @@
 2005-03-09  Kenichi Handa  <handa@m17n.org>
 
+       * international/latin-1.el: Set case and syntax for 255 only if
+       set-case-syntax-set-multibyte is nil.
+
        * textmodes/ispell.el (ispell-insert-word): New function. 
        (ispell-word): Use ispell-insert-word to isnert a new word.
        (ispell-process-line): Likewise
index 3c30ba0721bd97b14df04c704cc5e64d509e4b1f..610ed1cb9f1a4c09b6a158f7f49a9b3796cb346c 100644 (file)
   (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.