aboutsummaryrefslogtreecommitdiffstats
path: root/src/print.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/print.c')
-rw-r--r--src/print.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/print.c b/src/print.c
index d391fd5f7a3..838d03666d4 100644
--- a/src/print.c
+++ b/src/print.c
@@ -2046,7 +2046,10 @@ print_object (Lisp_Object obj, Lisp_Object printcharfun, bool escapeflag)
2046 break; 2046 break;
2047 2047
2048 case Lisp_Misc_Finalizer: 2048 case Lisp_Misc_Finalizer:
2049 strout ("#<finalizer>", -1, -1, printcharfun); 2049 strout ("#<finalizer", -1, -1, printcharfun);
2050 if (NILP (XFINALIZER (obj)->function))
2051 strout (" used", -1, -1, printcharfun);
2052 strout (">", -1, -1, printcharfun);
2050 break; 2053 break;
2051 2054
2052 /* Remaining cases shouldn't happen in normal usage, but let's 2055 /* Remaining cases shouldn't happen in normal usage, but let's