]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/pdumper.c (dump_cold_native_subr): Clean-up *IMPLICIT_CONVERSION macros.
authorAndrea Corallo <akrl@sdf.org>
Thu, 13 Aug 2020 10:47:34 +0000 (12:47 +0200)
committerAndrea Corallo <akrl@sdf.org>
Thu, 13 Aug 2020 10:48:03 +0000 (12:48 +0200)
src/pdumper.c

index c55b6f7bb43a3ad771e8b01b2e826cccfe131889..83410e3677429cc9e6b6900ba66bf1c149745855 100644 (file)
@@ -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