mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-04-27 11:40:45 -07:00
file.d: fix invalid predicate call
This commit is contained in:
parent
307d6b5c2d
commit
a9eb112a99
1 changed files with 1 additions and 1 deletions
|
|
@ -1626,7 +1626,7 @@ ecl_make_string_input_stream(cl_object strng, cl_index istart, cl_index iend)
|
|||
strm->stream.flags = ECL_STREAM_DEFAULT_FORMAT;
|
||||
strm->stream.byte_size = 8;
|
||||
#else
|
||||
if (ECL_BASE_STRING_P(strng) == t_base_string) {
|
||||
if (ECL_BASE_STRING_P(strng)) {
|
||||
strm->stream.format = @':latin-1';
|
||||
strm->stream.flags = ECL_STREAM_LATIN_1;
|
||||
strm->stream.byte_size = 8;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue