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.
This commit is contained in:
parent
31f94e4b1c
commit
b13e87c35b
2 changed files with 2 additions and 2 deletions
|
@ -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.
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue