Mercurial > hg > xemacs-beta
comparison src/event-stream.c @ 5814:a216b3c2b09e
Add TLS support. See xemacs-patches message with ID
<CAHCOHQk6FNm2xf=XiGEpPq43+7WOzNZ=SuD9V79o3wb9WVCTrQ@mail.gmail.com>.
author | Jerry James <james@xemacs.org> |
---|---|
date | Tue, 07 Oct 2014 21:16:10 -0600 |
parents | 75435be92103 |
children | b3824b7f5627 |
comparison
equal
deleted
inserted
replaced
5813:36dddf9d90d1 | 5814:a216b3c2b09e |
---|---|
4860 fd = qxe_open (XSTRING_DATA (filename), | 4860 fd = qxe_open (XSTRING_DATA (filename), |
4861 O_WRONLY | O_TRUNC | O_CREAT | OPEN_BINARY, | 4861 O_WRONLY | O_TRUNC | O_CREAT | OPEN_BINARY, |
4862 CREAT_MODE); | 4862 CREAT_MODE); |
4863 if (fd < 0) | 4863 if (fd < 0) |
4864 report_file_error ("Unable to create dribble file", filename); | 4864 report_file_error ("Unable to create dribble file", filename); |
4865 Vdribble_file = make_filedesc_output_stream (fd, 0, 0, LSTR_CLOSING); | 4865 Vdribble_file = make_filedesc_output_stream (fd, 0, 0, LSTR_CLOSING, |
4866 NULL); | |
4866 #ifdef MULE | 4867 #ifdef MULE |
4867 Vdribble_file = | 4868 Vdribble_file = |
4868 make_coding_output_stream | 4869 make_coding_output_stream |
4869 (XLSTREAM (Vdribble_file), | 4870 (XLSTREAM (Vdribble_file), |
4870 Qescape_quoted, CODING_ENCODE, 0); | 4871 Qescape_quoted, CODING_ENCODE, 0); |