From: Lars Ingebrigtsen Date: Sun, 21 Aug 2022 16:01:22 +0000 (+0200) Subject: Remove a newline from the end of an error message X-Git-Tag: emacs-29.0.90~1893^2~120 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=fe194f179d74de54128a3fdc294175e361146caf;p=emacs.git Remove a newline from the end of an error message * src/pdumper.c (dump_native_comp_unit): Remove newline from end of error message. --- diff --git a/src/pdumper.c b/src/pdumper.c index fb70df994a6..11cbc7d0aef 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -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;