emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/native-comp b85870e 3/3: * src/pdumper.c (dump_cold_native_subr)


From: Andrea Corallo
Subject: feature/native-comp b85870e 3/3: * src/pdumper.c (dump_cold_native_subr): Clean-up *IMPLICIT_CONVERSION macros.
Date: Thu, 13 Aug 2020 06:49:40 -0400 (EDT)

branch: feature/native-comp
commit b85870e65b642d4a38d797bfe7bcab7b7f9c15f0
Author: Andrea Corallo <akrl@sdf.org>
Commit: Andrea Corallo <akrl@sdf.org>

    * 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 c55b6f7..83410e3 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]