diff options
| author | Kenichi Handa | 2001-03-05 06:40:18 +0000 |
|---|---|---|
| committer | Kenichi Handa | 2001-03-05 06:40:18 +0000 |
| commit | 2f4b4b44cf08915472cee110bfbccb0cb65d7d09 (patch) | |
| tree | 4025bf024b973d90c72b01fccd7cef78992b0827 /src/coding.c | |
| parent | b86644f28fd7c2c81b3657ae111e5346667992d9 (diff) | |
| download | emacs-2f4b4b44cf08915472cee110bfbccb0cb65d7d09.tar.gz emacs-2f4b4b44cf08915472cee110bfbccb0cb65d7d09.zip | |
(syms_of_coding): Docstring modified.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/coding.c b/src/coding.c index f16fa375d0f..01762df59b7 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -7128,7 +7128,12 @@ updated by the functions `make-coding-system' and\n\ | |||
| 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 | ||