emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master b13e87c: Capitalize portable dump messages.


From: Philipp Stephani
Subject: master b13e87c: Capitalize portable dump messages.
Date: Sat, 14 Nov 2020 07:34:44 -0500 (EST)

branch: master
commit b13e87c35bb0215c211a456b8bc3184bf16eb5de
Author: Philipp Stephani <phst@google.com>
Commit: Philipp Stephani <phst@google.com>

    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.
---
 lisp/loadup.el | 2 +-
 src/pdumper.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/loadup.el b/lisp/loadup.el
index 568b9fe..4b711ee 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 9099004..b5b4050 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;
 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]