Closes #18. Change to char32_t everywhere; builds fine, behaviour as before.
This commit is contained in:
parent
812a1be7d9
commit
c59825d7fe
33 changed files with 116 additions and 76 deletions
|
|
@ -99,7 +99,7 @@ struct cons_pointer time_to_string( struct cons_pointer pointer ) {
|
|||
if ( t != 0 ) {
|
||||
char *bytes = ctime( &t );
|
||||
int l = strlen( bytes ) + 1;
|
||||
wchar_t buffer[l];
|
||||
char32_t buffer[l];
|
||||
|
||||
mbstowcs( buffer, bytes, l );
|
||||
result = c_string_to_lisp_string( buffer );
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue