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 /src | |
| 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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/pdumper.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 | ||