comparison src/coding.c @ 36520:df3c622dba0e

(syms_of_coding): Docstring modified.
author Kenichi Handa <handa@m17n.org>
date Mon, 05 Mar 2001 06:40:18 +0000
parents 27b5c760df31
children 0a75ccbe42b2
comparison
equal deleted inserted replaced
36519:f1875270e08c 36520:df3c622dba0e
7126 updated by the functions `make-coding-system' and\n\ 7126 updated by the functions `make-coding-system' and\n\
7127 `define-coding-system-alias'."); 7127 `define-coding-system-alias'.");
7128 Vcoding_system_alist = Qnil; 7128 Vcoding_system_alist = Qnil;
7129 7129
7130 DEFVAR_LISP ("coding-category-list", &Vcoding_category_list, 7130 DEFVAR_LISP ("coding-category-list", &Vcoding_category_list,
7131 "List of coding-categories (symbols) ordered by priority."); 7131 "List of coding-categories (symbols) ordered by priority.\n\
7132 \n\
7133 On detecting a coding system, Emacs tries code detection algorithms\n\
7134 associated with each coding-category one by one in this order. When\n\
7135 one algorithm agrees with a byte sequence of source text, the coding\n\
7136 system bound to the corresponding coding-category is selected.");
7132 { 7137 {
7133 int i; 7138 int i;
7134 7139
7135 Vcoding_category_list = Qnil; 7140 Vcoding_category_list = Qnil;
7136 for (i = CODING_CATEGORY_IDX_MAX - 1; i >= 0; i--) 7141 for (i = CODING_CATEGORY_IDX_MAX - 1; i >= 0; i--)