]> git.eshelyaron.com Git - emacs.git/commitdiff
Capitalize portable dump messages.
authorPhilipp Stephani <phst@google.com>
Sat, 14 Nov 2020 12:30:53 +0000 (13:30 +0100)
committerPhilipp Stephani <phst@google.com>
Sat, 14 Nov 2020 12:33:07 +0000 (13:33 +0100)
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.

lisp/loadup.el
src/pdumper.c

index 568b9fe40df30888ef2ff6c0c7db2b666aafdf36..4b711eed0658cf64beb58e5b6343d3e50e11e36a 100644 (file)
@@ -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.
index 909900417d9db6204eb9867b4c6ad748bcd2f6c2..b5b4050b93d98b10bfbd2a6a2c15db14efb8c527 100644 (file)
@@ -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;