From: Philipp Stephani Date: Sat, 14 Nov 2020 12:30:53 +0000 (+0100) Subject: Capitalize portable dump messages. X-Git-Tag: emacs-28.0.90~5157^2 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b13e87c35bb0215c211a456b8bc3184bf16eb5de;p=emacs.git Capitalize portable dump messages. We capitalize all other messages during the dump, so capitalize the "dump mode" and "dumping fingerprint" ones as well for consistency. * src/pdumper.c (Fdump_emacs_portable): Capitalize fingerprint message prefix. * lisp/loadup.el: Capitalize "dump mode" message. --- diff --git a/lisp/loadup.el b/lisp/loadup.el index 568b9fe40df..4b711eed065 100644 --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -57,7 +57,7 @@ ;; bidi.c needs for its job. (setq redisplay--inhibit-bidi t) -(message "dump mode: %s" dump-mode) +(message "Dump mode: %s" dump-mode) ;; Add subdirectories to the load-path for files that might get ;; autoloaded when bootstrapping or running Emacs normally. diff --git a/src/pdumper.c b/src/pdumper.c index 909900417d9..b5b4050b93d 100644 --- a/src/pdumper.c +++ b/src/pdumper.c @@ -4024,7 +4024,7 @@ types. */) ctx->header.fingerprint[i] = fingerprint[i]; const dump_off header_start = ctx->offset; - dump_fingerprint ("dumping fingerprint", ctx->header.fingerprint); + dump_fingerprint ("Dumping fingerprint", ctx->header.fingerprint); dump_write (ctx, &ctx->header, sizeof (ctx->header)); const dump_off header_end = ctx->offset;