struct Lisp_Native_Comp_Unit
{
union vectorlike_header header;
- /* Original eln file loaded (just for debug purpose). */
+ /* Original eln file loaded. */
Lisp_Object file;
/* Analogous to the constant vector but per compilation unit. */
Lisp_Object data_vec;
case PVEC_NATIVE_COMP_UNIT:
{
print_c_string ("#<native compilation unit ", printcharfun);
- int len = sprintf (buf, "%d", XNATIVE_COMP_UNIT (obj)->fd);
- strout (buf, len, len, printcharfun);
+ print_string (XNATIVE_COMP_UNIT (obj)->file, printcharfun);
printchar ('>', printcharfun);
}
break;