Changeset 17 for abuse/trunk/src/lisp.cpp
- Timestamp:
- Nov 10, 2005, 9:41:13 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
abuse/trunk/src/lisp.cpp
r16 r17 508 508 return (((lisp_fixed_point *)lnumber)->x)>>16; 509 509 case L_STRING : 510 return (u char)*lstring_value(lnumber);510 return (uint8_t)*lstring_value(lnumber); 511 511 case L_CHARACTER : 512 512 return lcharacter_value(lnumber); … … 1307 1307 s++; 1308 1308 if (*s=='n') 1309 current_print_file->write_ byte('\n');1309 current_print_file->write_uint8('\n'); 1310 1310 else if (*s=='r') 1311 current_print_file->write_ byte('\r');1311 current_print_file->write_uint8('\r'); 1312 1312 else if (*s=='t') 1313 current_print_file->write_ byte('\t');1313 current_print_file->write_uint8('\t'); 1314 1314 else if (*s=='\\') 1315 current_print_file->write_ byte('\\');1315 current_print_file->write_uint8('\\'); 1316 1316 } 1317 1317 else*/ 1318 current_print_file->write_ byte(*s);1318 current_print_file->write_uint8(*s); 1319 1319 } 1320 1320 } … … 1404 1404 if (current_print_file) 1405 1405 { 1406 u charch=((lisp_character *)i)->ch;1406 uint8_t ch=((lisp_character *)i)->ch; 1407 1407 current_print_file->write(&ch,1); 1408 1408 } else
Note: See TracChangeset
for help on using the changeset viewer.