diff options
| author | Juanma Barranquero | 2008-12-10 01:04:19 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2008-12-10 01:04:19 +0000 |
| commit | 2133e2d13894855f7c44f1dd2fe1e90f49991c51 (patch) | |
| tree | 767b0f5e42c23b067ff1dbf2eed02669fc9ea581 /src/coding.c | |
| parent | 4ccfa1c0d10cda7d672756ae98f31af0c75c3914 (diff) | |
| download | emacs-2133e2d13894855f7c44f1dd2fe1e90f49991c51.tar.gz emacs-2133e2d13894855f7c44f1dd2fe1e90f49991c51.zip | |
* coding.c (QCdefault_char): Rename from QCdefalut_char.
(Fcoding_system_put): Use QCdefault_char.
(syms_of_coding): Set QCdefault_char, not QCdefalut_char.
Diffstat (limited to 'src/coding.c')
| -rw-r--r-- | src/coding.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/coding.c b/src/coding.c index e92dfa45e21..e292f808597 100644 --- a/src/coding.c +++ b/src/coding.c | |||
| @@ -314,7 +314,7 @@ Lisp_Object Qcharset, Qiso_2022, Qutf_8, Qutf_16, Qshift_jis, Qbig5; | |||
| 314 | Lisp_Object Qbig, Qlittle; | 314 | Lisp_Object Qbig, Qlittle; |
| 315 | Lisp_Object Qcoding_system_history; | 315 | Lisp_Object Qcoding_system_history; |
| 316 | Lisp_Object Qvalid_codes; | 316 | Lisp_Object Qvalid_codes; |
| 317 | Lisp_Object QCcategory, QCmnemonic, QCdefalut_char; | 317 | Lisp_Object QCcategory, QCmnemonic, QCdefault_char; |
| 318 | Lisp_Object QCdecode_translation_table, QCencode_translation_table; | 318 | Lisp_Object QCdecode_translation_table, QCencode_translation_table; |
| 319 | Lisp_Object QCpost_read_conversion, QCpre_write_conversion; | 319 | Lisp_Object QCpost_read_conversion, QCpre_write_conversion; |
| 320 | Lisp_Object QCascii_compatible_p; | 320 | Lisp_Object QCascii_compatible_p; |
| @@ -9621,7 +9621,7 @@ DEFUN ("coding-system-put", Fcoding_system_put, Scoding_system_put, | |||
| 9621 | CHECK_CHARACTER (val); | 9621 | CHECK_CHARACTER (val); |
| 9622 | CODING_ATTR_MNEMONIC (attrs) = val; | 9622 | CODING_ATTR_MNEMONIC (attrs) = val; |
| 9623 | } | 9623 | } |
| 9624 | else if (EQ (prop, QCdefalut_char)) | 9624 | else if (EQ (prop, QCdefault_char)) |
| 9625 | { | 9625 | { |
| 9626 | if (NILP (val)) | 9626 | if (NILP (val)) |
| 9627 | val = make_number (' '); | 9627 | val = make_number (' '); |
| @@ -9927,7 +9927,7 @@ syms_of_coding () | |||
| 9927 | 9927 | ||
| 9928 | DEFSYM (QCcategory, ":category"); | 9928 | DEFSYM (QCcategory, ":category"); |
| 9929 | DEFSYM (QCmnemonic, ":mnemonic"); | 9929 | DEFSYM (QCmnemonic, ":mnemonic"); |
| 9930 | DEFSYM (QCdefalut_char, ":default-char"); | 9930 | DEFSYM (QCdefault_char, ":default-char"); |
| 9931 | DEFSYM (QCdecode_translation_table, ":decode-translation-table"); | 9931 | DEFSYM (QCdecode_translation_table, ":decode-translation-table"); |
| 9932 | DEFSYM (QCencode_translation_table, ":encode-translation-table"); | 9932 | DEFSYM (QCencode_translation_table, ":encode-translation-table"); |
| 9933 | DEFSYM (QCpost_read_conversion, ":post-read-conversion"); | 9933 | DEFSYM (QCpost_read_conversion, ":post-read-conversion"); |