diff options
| author | Philipp Stephani | 2020-11-14 13:30:53 +0100 |
|---|---|---|
| committer | Philipp Stephani | 2020-11-14 13:33:07 +0100 |
| commit | b13e87c35bb0215c211a456b8bc3184bf16eb5de (patch) | |
| tree | 7b16ead91650e485baeb776ca2704d35adc2656b | |
| parent | 31f94e4b1c3dc201646ec436d3e2c477f784ed21 (diff) | |
| download | emacs-b13e87c35bb0215c211a456b8bc3184bf16eb5de.tar.gz emacs-b13e87c35bb0215c211a456b8bc3184bf16eb5de.zip | |
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.
| -rw-r--r-- | lisp/loadup.el | 2 | ||||
| -rw-r--r-- | src/pdumper.c | 2 |
2 files changed, 2 insertions, 2 deletions
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 @@ | |||
| 57 | ;; bidi.c needs for its job. | 57 | ;; bidi.c needs for its job. |
| 58 | (setq redisplay--inhibit-bidi t) | 58 | (setq redisplay--inhibit-bidi t) |
| 59 | 59 | ||
| 60 | (message "dump mode: %s" dump-mode) | 60 | (message "Dump mode: %s" dump-mode) |
| 61 | 61 | ||
| 62 | ;; Add subdirectories to the load-path for files that might get | 62 | ;; Add subdirectories to the load-path for files that might get |
| 63 | ;; autoloaded when bootstrapping or running Emacs normally. | 63 | ;; 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. */) | |||
| 4024 | ctx->header.fingerprint[i] = fingerprint[i]; | 4024 | ctx->header.fingerprint[i] = fingerprint[i]; |
| 4025 | 4025 | ||
| 4026 | const dump_off header_start = ctx->offset; | 4026 | const dump_off header_start = ctx->offset; |
| 4027 | dump_fingerprint ("dumping fingerprint", ctx->header.fingerprint); | 4027 | dump_fingerprint ("Dumping fingerprint", ctx->header.fingerprint); |
| 4028 | dump_write (ctx, &ctx->header, sizeof (ctx->header)); | 4028 | dump_write (ctx, &ctx->header, sizeof (ctx->header)); |
| 4029 | const dump_off header_end = ctx->offset; | 4029 | const dump_off header_end = ctx->offset; |
| 4030 | 4030 | ||