From b85870e65b642d4a38d797bfe7bcab7b7f9c15f0 Mon Sep 17 00:00:00 2001 From: Andrea Corallo Date: Thu, 13 Aug 2020 12:47:34 +0200 Subject: [PATCH] * src/pdumper.c (dump_cold_native_subr): Clean-up *IMPLICIT_CONVERSION macros. --- src/pdumper.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/pdumper.c b/src/pdumper.c index c55b6f7bb43..83410e36774 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -3416,18 +3416,14 @@ dump_cold_native_subr (struct dump_context *ctx, Lisp_Object subr) subr_offset + dump_offsetof (struct Lisp_Subr, symbol_name), ctx->offset); const char *symbol_name = XSUBR (subr)->symbol_name; - ALLOW_IMPLICIT_CONVERSION; dump_write (ctx, symbol_name, 1 + strlen (symbol_name)); - DISALLOW_IMPLICIT_CONVERSION; dump_remember_fixup_ptr_raw (ctx, subr_offset + dump_offsetof (struct Lisp_Subr, native_c_name[0]), ctx->offset); const char *c_name = XSUBR (subr)->native_c_name[0]; - ALLOW_IMPLICIT_CONVERSION; dump_write (ctx, c_name, 1 + strlen (c_name)); - DISALLOW_IMPLICIT_CONVERSION; } static void -- 2.39.5