diff options
| author | Kenichi Handa | 2002-10-01 01:31:29 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2002-10-01 01:31:29 +0000 |
| commit | de8457f1429b3a018699124355ffa350e6a51e52 (patch) | |
| tree | 1f8a7ea7730aab4266cc9e59b52987ee51f66584 | |
| parent | 9239a2817f7ede6294b9c17970ff572461244ff8 (diff) | |
| download | emacs-de8457f1429b3a018699124355ffa350e6a51e52.tar.gz emacs-de8457f1429b3a018699124355ffa350e6a51e52.zip | |
Bind set-case-syntax-charset to iso-8859-3. Never provide latin-3.
| -rw-r--r-- | lisp/international/latin-3.el | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/lisp/international/latin-3.el b/lisp/international/latin-3.el index b2a8492eed7..36ca36c259d 100644 --- a/lisp/international/latin-3.el +++ b/lisp/international/latin-3.el | |||
| @@ -32,7 +32,8 @@ | |||
| 32 | 32 | ||
| 33 | (require 'case-table) | 33 | (require 'case-table) |
| 34 | 34 | ||
| 35 | (let ((tbl (standard-case-table))) | 35 | (let ((tbl (standard-case-table)) |
| 36 | (set-case-syntax-charset 'iso-8859-3)) | ||
| 36 | (set-case-syntax 160 " " tbl) ;no-break space | 37 | (set-case-syntax 160 " " tbl) ;no-break space |
| 37 | (set-case-syntax-pair 161 177 tbl) ;latin letter h with stroke | 38 | (set-case-syntax-pair 161 177 tbl) ;latin letter h with stroke |
| 38 | (set-case-syntax 162 "w" tbl) ;breve | 39 | (set-case-syntax 162 "w" tbl) ;breve |
| @@ -89,11 +90,6 @@ | |||
| 89 | (set-case-syntax 247 "_" tbl) ;division sign | 90 | (set-case-syntax 247 "_" tbl) ;division sign |
| 90 | (set-case-syntax 255 "w" tbl)) ;dot above | 91 | (set-case-syntax 255 "w" tbl)) ;dot above |
| 91 | 92 | ||
| 92 | ;; When preloading this file, don't provide the feature. | ||
| 93 | ;; Explicit `require' is used to load this for 8-bit characters. | ||
| 94 | (or set-case-syntax-set-multibyte | ||
| 95 | (provide 'latin-3)) | ||
| 96 | |||
| 97 | ;;; Don't compile this file: src/Makefile.in instructs make-docfile | 93 | ;;; Don't compile this file: src/Makefile.in instructs make-docfile |
| 98 | ;;; to look at the .el file! | 94 | ;;; to look at the .el file! |
| 99 | ;;; Local Variables: | 95 | ;;; Local Variables: |