Mercurial > hg > xemacs-beta
comparison src/doc.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 | 72c5d36ba3b6 |
children |
comparison
equal
deleted
inserted
replaced
5813:36dddf9d90d1 | 5814:a216b3c2b09e |
---|---|
70 ("Position out of range in doc string file"), | 70 ("Position out of range in doc string file"), |
71 name_reloc, make_fixnum (position)); | 71 name_reloc, make_fixnum (position)); |
72 goto done; | 72 goto done; |
73 } | 73 } |
74 | 74 |
75 fdstream = make_filedesc_input_stream (fd, 0, -1, 0); | 75 fdstream = make_filedesc_input_stream (fd, 0, -1, 0, NULL); |
76 Lstream_set_buffering (XLSTREAM (fdstream), LSTREAM_UNBUFFERED, 0); | 76 Lstream_set_buffering (XLSTREAM (fdstream), LSTREAM_UNBUFFERED, 0); |
77 instream = | 77 instream = |
78 make_coding_input_stream | 78 make_coding_input_stream |
79 (XLSTREAM (fdstream), standard_doc_file ? Qescape_quoted : Qbinary, | 79 (XLSTREAM (fdstream), standard_doc_file ? Qescape_quoted : Qbinary, |
80 CODING_DECODE, 0); | 80 CODING_DECODE, 0); |
185 ("Position out of range in doc string file"), | 185 ("Position out of range in doc string file"), |
186 name_reloc, make_fixnum (position)); | 186 name_reloc, make_fixnum (position)); |
187 goto done; | 187 goto done; |
188 } | 188 } |
189 | 189 |
190 fdstream = make_filedesc_input_stream (fd, 0, -1, 0); | 190 fdstream = make_filedesc_input_stream (fd, 0, -1, 0, NULL); |
191 Lstream_set_buffering (XLSTREAM (fdstream), LSTREAM_UNBUFFERED, 0); | 191 Lstream_set_buffering (XLSTREAM (fdstream), LSTREAM_UNBUFFERED, 0); |
192 instream = | 192 instream = |
193 make_coding_input_stream | 193 make_coding_input_stream |
194 /* Major trouble if we are too clever when reading byte-code | 194 /* Major trouble if we are too clever when reading byte-code |
195 instructions! | 195 instructions! |