diff options
| -rw-r--r-- | src/pdumper.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pdumper.c b/src/pdumper.c index a028600ea79..c00f8a0af54 100644 --- a/src/pdumper.c +++ b/src/pdumper.c | |||
| @@ -1405,7 +1405,8 @@ print_paths_to_root_1 (struct dump_context *ctx, | |||
| 1405 | Lisp_Object repr = Fprin1_to_string (referrer, Qnil); | 1405 | Lisp_Object repr = Fprin1_to_string (referrer, Qnil); |
| 1406 | for (int i = 0; i < level; ++i) | 1406 | for (int i = 0; i < level; ++i) |
| 1407 | fputc (' ', stderr); | 1407 | fputc (' ', stderr); |
| 1408 | fprintf (stderr, "%s\n", SDATA (repr)); | 1408 | fwrite (SDATA (repr), 1, SBYTES (repr), stderr); |
| 1409 | fputc ('\n', stderr); | ||
| 1409 | print_paths_to_root_1 (ctx, referrer, level + 1); | 1410 | print_paths_to_root_1 (ctx, referrer, level + 1); |
| 1410 | } | 1411 | } |
| 1411 | } | 1412 | } |