diff options
| author | Dave Love | 2002-05-17 16:25:23 +0000 |
|---|---|---|
| committer | Dave Love | 2002-05-17 16:25:23 +0000 |
| commit | 1fcd6c8b99bf3fe27d1a898fd86c3be736871e88 (patch) | |
| tree | 68f81e3da7ad11073629b0e9d71aab7209e13ae6 /src/coding.c | |
| parent | 04c2f2c57cda829a1635c955205e5d5b90a9610a (diff) | |
| download | emacs-1fcd6c8b99bf3fe27d1a898fd86c3be736871e88.tar.gz emacs-1fcd6c8b99bf3fe27d1a898fd86c3be736871e88.zip | |
(Vchar_coding_system_table, Qchar_coding_system):
Removed.
(Fset_coding_system_priority, Fset_coding_system_priority)
(Fdefine_coding_system_internal): Doc fix.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 21 |
1 files changed, 4 insertions, 17 deletions
diff --git a/src/coding.c b/src/coding.c index 54bfb4ad770..9bdc985108a 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -402,10 +402,6 @@ Lisp_Object Vdefault_process_coding_system; | |||
| 402 | to avoid infinite recursive call. */ | 402 | to avoid infinite recursive call. */ |
| 403 | static int inhibit_pre_post_conversion; | 403 | static int inhibit_pre_post_conversion; |
| 404 | 404 | ||
| 405 | /* Char-table containing safe coding systems of each character. */ | ||
| 406 | Lisp_Object Vchar_coding_system_table; | ||
| 407 | Lisp_Object Qchar_coding_system; | ||
| 408 | |||
| 409 | /* Two special coding systems. */ | 405 | /* Two special coding systems. */ |
| 410 | Lisp_Object Vsjis_coding_system; | 406 | Lisp_Object Vsjis_coding_system; |
| 411 | Lisp_Object Vbig5_coding_system; | 407 | Lisp_Object Vbig5_coding_system; |
| @@ -7105,7 +7101,8 @@ usage: (find-operation-coding-system OPERATION ARGUMENTS ...) */) | |||
| 7105 | 7101 | ||
| 7106 | DEFUN ("set-coding-system-priority", Fset_coding_system_priority, | 7102 | DEFUN ("set-coding-system-priority", Fset_coding_system_priority, |
| 7107 | Sset_coding_system_priority, 1, MANY, 0, | 7103 | Sset_coding_system_priority, 1, MANY, 0, |
| 7108 | doc: /* Put higher priority to coding systems of the arguments. */) | 7104 | doc: /* Assign higher priority to coding systems given as arguments. |
| 7105 | usage: (set-coding-system-priority CODING-SYSTEM ...) */) | ||
| 7109 | (nargs, args) | 7106 | (nargs, args) |
| 7110 | int nargs; | 7107 | int nargs; |
| 7111 | Lisp_Object *args; | 7108 | Lisp_Object *args; |
| @@ -7200,7 +7197,8 @@ make_subsidiaries (base) | |||
| 7200 | 7197 | ||
| 7201 | DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal, | 7198 | DEFUN ("define-coding-system-internal", Fdefine_coding_system_internal, |
| 7202 | Sdefine_coding_system_internal, coding_arg_max, MANY, 0, | 7199 | Sdefine_coding_system_internal, coding_arg_max, MANY, 0, |
| 7203 | doc: /* For internal use only. */) | 7200 | doc: /* For internal use only. |
| 7201 | usage: (define-coding-system-internal ...) */) | ||
| 7204 | (nargs, args) | 7202 | (nargs, args) |
| 7205 | int nargs; | 7203 | int nargs; |
| 7206 | Lisp_Object *args; | 7204 | Lisp_Object *args; |
| @@ -7857,10 +7855,6 @@ syms_of_coding () | |||
| 7857 | DEFSYM (Qtranslation_table_for_decode, "translation-table-for-decode"); | 7855 | DEFSYM (Qtranslation_table_for_decode, "translation-table-for-decode"); |
| 7858 | DEFSYM (Qtranslation_table_for_encode, "translation-table-for-encode"); | 7856 | DEFSYM (Qtranslation_table_for_encode, "translation-table-for-encode"); |
| 7859 | 7857 | ||
| 7860 | DEFSYM (Qchar_coding_system, "char-coding-system"); | ||
| 7861 | |||
| 7862 | Fput (Qchar_coding_system, Qchar_table_extra_slots, make_number (2)); | ||
| 7863 | |||
| 7864 | DEFSYM (Qvalid_codes, "valid-codes"); | 7858 | DEFSYM (Qvalid_codes, "valid-codes"); |
| 7865 | 7859 | ||
| 7866 | DEFSYM (Qemacs_mule, "emacs-mule"); | 7860 | DEFSYM (Qemacs_mule, "emacs-mule"); |
| @@ -8145,13 +8139,6 @@ coding system used in each operation can't encode the text. | |||
| 8145 | The default value is `select-safe-coding-system' (which see). */); | 8139 | The default value is `select-safe-coding-system' (which see). */); |
| 8146 | Vselect_safe_coding_system_function = Qnil; | 8140 | Vselect_safe_coding_system_function = Qnil; |
| 8147 | 8141 | ||
| 8148 | DEFVAR_LISP ("char-coding-system-table", &Vchar_coding_system_table, | ||
| 8149 | doc: /* | ||
| 8150 | Char-table containing safe coding systems of each characters. | ||
| 8151 | Each element doesn't include such generic coding systems that can | ||
| 8152 | encode any characters. They are in the first extra slot. */); | ||
| 8153 | Vchar_coding_system_table = Fmake_char_table (Qchar_coding_system, Qnil); | ||
| 8154 | |||
| 8155 | DEFVAR_BOOL ("inhibit-iso-escape-detection", | 8142 | DEFVAR_BOOL ("inhibit-iso-escape-detection", |
| 8156 | &inhibit_iso_escape_detection, | 8143 | &inhibit_iso_escape_detection, |
| 8157 | doc: /* | 8144 | doc: /* |