comparison src/file-coding.c @ 564:001628b7a5b3

[xemacs-hg @ 2001-05-24 09:37:25 by yoshiki] Fix broken build on Linux. * buffer.c (Qtext_conversion_error): Moved from file-coding.c so that --with-file-coding=no will compile corectly. * buffer.c (syms_of_buffer): Define Qtext_conversion_error. Also moved from file-coding.c * file-coding.c (Qtext_conversion_error): Moved to buffer.c * file-coding.c (syms_of_file_coding): Moved Qtext_conversion_error initialization to buffer.c * emodules.c (Qdll_error): New error. * emodules.c (syms_of_module): Declare Qdll_error. * esd.c (esd_play_sound_data): sound_warn accepts only one arg. * miscplay.c (sndcnv8S_2mono): * miscplay.c (sndcnv2monounsigned): * miscplay.c (int2ulaw): * miscplay.c (sndcnv2byteLE): * miscplay.c (sndcnv2byteBE): * miscplay.c (sndcnv2monobyteLE): * miscplay.c (sndcnv2monobyteBE): Replace signed Char_Binary with Char_Binary. There's no type called signed char in C. Also remove audio: from error message. sound_warn and sound_perror prepends them.
author yoshiki
date Thu, 24 May 2001 09:37:30 +0000
parents 183866b06e0b
children b39c14581166
comparison
equal deleted inserted replaced
563:183866b06e0b 564:001628b7a5b3
34 #ifdef MULE 34 #ifdef MULE
35 #include "mule-ccl.h" 35 #include "mule-ccl.h"
36 #include "chartab.h" 36 #include "chartab.h"
37 #endif 37 #endif
38 #include "file-coding.h" 38 #include "file-coding.h"
39
40 Lisp_Object Qtext_conversion_error;
41 39
42 Lisp_Object Vkeyboard_coding_system; 40 Lisp_Object Vkeyboard_coding_system;
43 Lisp_Object Vterminal_coding_system; 41 Lisp_Object Vterminal_coding_system;
44 Lisp_Object Vcoding_system_for_read; 42 Lisp_Object Vcoding_system_for_read;
45 Lisp_Object Vcoding_system_for_write; 43 Lisp_Object Vcoding_system_for_write;
5587 void 5585 void
5588 syms_of_file_coding (void) 5586 syms_of_file_coding (void)
5589 { 5587 {
5590 INIT_LRECORD_IMPLEMENTATION (coding_system); 5588 INIT_LRECORD_IMPLEMENTATION (coding_system);
5591 5589
5592 DEFERROR_STANDARD (Qtext_conversion_error, Qconversion_error);
5593
5594 DEFSUBR (Fcoding_system_p); 5590 DEFSUBR (Fcoding_system_p);
5595 DEFSUBR (Ffind_coding_system); 5591 DEFSUBR (Ffind_coding_system);
5596 DEFSUBR (Fget_coding_system); 5592 DEFSUBR (Fget_coding_system);
5597 DEFSUBR (Fcoding_system_list); 5593 DEFSUBR (Fcoding_system_list);
5598 DEFSUBR (Fcoding_system_name); 5594 DEFSUBR (Fcoding_system_name);