Remove a newline from the end of an error message

* src/pdumper.c (dump_native_comp_unit): Remove newline from end
of error message.
This commit is contained in:
Lars Ingebrigtsen 2022-08-21 18:01:22 +02:00
parent b061782fa6
commit fe194f179d

View file

@ -2911,7 +2911,7 @@ dump_native_comp_unit (struct dump_context *ctx,
struct Lisp_Native_Comp_Unit *comp_u)
{
if (!CONSP (comp_u->file))
error ("Trying to dump non fixed-up eln file\n");
error ("Trying to dump non fixed-up eln file");
/* Have function documentation always lazy loaded to optimize load-time. */
comp_u->data_fdoc_v = Qnil;