diff options
author | Kenichi Handa <handa@m17n.org> | 2002-10-01 01:30:52 +0000 |
---|---|---|
committer | Kenichi Handa <handa@m17n.org> | 2002-10-01 01:30:52 +0000 |
commit | 54fd80705cd3946de127b9b4653ef6c806466956 (patch) | |
tree | 7cdd1b5a6723e023a0adf757c5193595606a4eaa /lisp/international/latin-1.el | |
parent | f5f7578b06c5d8dc77039208430ac0fc23b3a533 (diff) | |
download | emacs-54fd80705cd3946de127b9b4653ef6c806466956.tar.gz |
Bind set-case-syntax-charset to iso-8859-1. Never provide latin-1.
Diffstat (limited to 'lisp/international/latin-1.el')
-rw-r--r-- | lisp/international/latin-1.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/international/latin-1.el b/lisp/international/latin-1.el index 8fe1685f531..8b2a22da078 100644 --- a/lisp/international/latin-1.el +++ b/lisp/international/latin-1.el @@ -35,7 +35,8 @@ (require 'case-table) -(let ((tbl (standard-case-table))) +(let ((tbl (standard-case-table)) + (set-case-syntax-charset 'iso-8859-1)) (set-case-syntax 160 " " tbl) ;no-break space (set-case-syntax 161 "." tbl) ;inverted exclamation mark (set-case-syntax 162 "w" tbl) ;cent sign @@ -102,11 +103,6 @@ (set-case-syntax 247 "_" tbl) ;division sign (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. -(or set-case-syntax-set-multibyte - (provide 'latin-1)) - ;;; Don't compile this file: src/Makefile.in instructs make-docfile ;;; to look at the .el file! ;;; Local Variables: |