mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-01 18:00:40 -08:00
Fix build with HAVE_NATIVE_COMP
* src/print.c (print_vectorlike_unreadable): Use print_object with new signature.
This commit is contained in:
parent
4f81359ab0
commit
0f4835e4a3
1 changed files with 2 additions and 2 deletions
|
|
@ -2098,9 +2098,9 @@ print_vectorlike_unreadable (Lisp_Object obj, bool escapeflag, char *buf,
|
|||
{
|
||||
struct Lisp_Native_Comp_Unit *cu = XNATIVE_COMP_UNIT (obj);
|
||||
print_c_string ("#<native compilation unit: ", printcharfun);
|
||||
print_object (cu->file, printcharfun, escapeflag);
|
||||
print_object (cu->file, escapeflag, pc);
|
||||
printchar (' ', printcharfun);
|
||||
print_object (cu->optimize_qualities, printcharfun, escapeflag);
|
||||
print_object (cu->optimize_qualities, escapeflag, pc);
|
||||
printchar ('>', printcharfun);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue