Mercurial > hg > xemacs-beta
comparison src/file-coding.c @ 1242:f0af455e89d9
[xemacs-hg @ 2003-01-31 12:02:30 by stephent]
bogus C++ comments <87d6mdzgcq.fsf_-_@tleepslib.sk.tsukuba.ac.jp>
macro syntax typo <878yx1zg9q.fsf_-_@tleepslib.sk.tsukuba.ac.jp>
move Fprovide from syms_of to vars_of <874r7pzg0x.fsf_-_@tleepslib.sk.tsukuba.ac.jp>
author | stephent |
---|---|
date | Fri, 31 Jan 2003 12:02:38 +0000 |
parents | e22b0213b713 |
children | b531bf8658e9 |
comparison
equal
deleted
inserted
replaced
1241:4c5e93b9ffa9 | 1242:f0af455e89d9 |
---|---|
4606 | 4606 |
4607 #ifdef HAVE_ZLIB | 4607 #ifdef HAVE_ZLIB |
4608 DEFSYMBOL (Qgzip); | 4608 DEFSYMBOL (Qgzip); |
4609 #endif | 4609 #endif |
4610 | 4610 |
4611 /* WARNING: The existing categories are intimately tied to the function | |
4612 `coding-system-category' in coding.el. If you change a category, or | |
4613 change the layout of any coding system associated with a category, you | |
4614 need to check that function and make sure it's written properly. */ | |
4615 | |
4616 #ifdef HAVE_DEFAULT_EOL_DETECTION | |
4617 Fprovide (intern ("unix-default-eol-detection")); | |
4618 #endif | |
4619 } | 4611 } |
4620 | 4612 |
4621 void | 4613 void |
4622 lstream_type_create_file_coding (void) | 4614 lstream_type_create_file_coding (void) |
4623 { | 4615 { |
4762 reinit_vars_of_file_coding (); | 4754 reinit_vars_of_file_coding (); |
4763 | 4755 |
4764 /* We always have file-coding support */ | 4756 /* We always have file-coding support */ |
4765 Fprovide (intern ("file-coding")); | 4757 Fprovide (intern ("file-coding")); |
4766 | 4758 |
4759 #ifdef HAVE_DEFAULT_EOL_DETECTION | |
4760 /* WARNING: The existing categories are intimately tied to the function | |
4761 `coding-system-category' in coding.el. If you change a category, or | |
4762 change the layout of any coding system associated with a category, you | |
4763 need to check that function and make sure it's written properly. */ | |
4764 | |
4765 Fprovide (intern ("unix-default-eol-detection")); | |
4766 #endif | |
4767 | |
4767 DEFVAR_LISP ("keyboard-coding-system", &Vkeyboard_coding_system /* | 4768 DEFVAR_LISP ("keyboard-coding-system", &Vkeyboard_coding_system /* |
4768 Coding system used for TTY keyboard input. | 4769 Coding system used for TTY keyboard input. |
4769 Not used under a windowing system. | 4770 Not used under a windowing system. |
4770 */ ); | 4771 */ ); |
4771 Vkeyboard_coding_system = Qnil; | 4772 Vkeyboard_coding_system = Qnil; |