diff options
| author | Kenichi Handa | 2002-10-01 01:32:44 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-10-01 01:32:44 +0000 |
| commit | 3fec4a06bb5ea8cda005cd77fc9b88d66fa1e946 (patch) | |
| tree | cffe287e33c60ec8ce219d688ab0bc3502405854 | |
| parent | 8deeeb61d844da32f52c33add96633ba58917395 (diff) | |
| download | emacs-3fec4a06bb5ea8cda005cd77fc9b88d66fa1e946.tar.gz emacs-3fec4a06bb5ea8cda005cd77fc9b88d66fa1e946.zip | |
Bind set-case-syntax-charset to iso-8859-15. Never provide latin-9.
| -rw-r--r-- | lisp/international/latin-9.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/international/latin-9.el b/lisp/international/latin-9.el index 964ec3c597b..d66734cdccb 100644 --- a/lisp/international/latin-9.el +++ b/lisp/international/latin-9.el | |||
| @@ -45,7 +45,8 @@ | |||
| 45 | 45 | ||
| 46 | (require 'case-table) | 46 | (require 'case-table) |
| 47 | 47 | ||
| 48 | (let ((tbl (standard-case-table))) | 48 | (let ((tbl (standard-case-table)) |
| 49 | (set-case-syntax-charset 'iso-8859-15)) | ||
| 49 | (set-case-syntax 160 " " tbl) ;no-break space | 50 | (set-case-syntax 160 " " tbl) ;no-break space |
| 50 | (set-case-syntax 161 "." tbl) ;inverted exclamation mark | 51 | (set-case-syntax 161 "." tbl) ;inverted exclamation mark |
| 51 | (set-case-syntax 162 "w" tbl) ;cent sign | 52 | (set-case-syntax 162 "w" tbl) ;cent sign |
| @@ -108,11 +109,6 @@ | |||
| 108 | (set-case-syntax 223 "w" tbl) ;latin small letter sharp s | 109 | (set-case-syntax 223 "w" tbl) ;latin small letter sharp s |
| 109 | (set-case-syntax 247 "_" tbl)) ;division sign | 110 | (set-case-syntax 247 "_" tbl)) ;division sign |
| 110 | 111 | ||
| 111 | ;; When preloading this file, don't provide the feature. | ||
| 112 | ;; Explicit `require' is used to load this for 8-bit characters. | ||
| 113 | (or set-case-syntax-set-multibyte | ||
| 114 | (provide 'latin-9)) | ||
| 115 | |||
| 116 | ;;; Don't compile this file: src/Makefile.in instructs make-docfile | 112 | ;;; Don't compile this file: src/Makefile.in instructs make-docfile |
| 117 | ;;; to look at the .el file! | 113 | ;;; to look at the .el file! |
| 118 | ;;; Local Variables: | 114 | ;;; Local Variables: |