From fb27c895d477f29c164cb76c772123c1cdb87a9c Mon Sep 17 00:00:00 2001 From: Jessie Hildebrandt Date: Thu, 21 Sep 2023 15:07:44 -0400 Subject: [PATCH] Override default echo area message --- init.el | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/init.el b/init.el index 5d5c43d..d7eb7c2 100644 --- a/init.el +++ b/init.el @@ -290,6 +290,12 @@ DOCSTRING is an optional form that is discarded upon expansion." ;; emacs ;; ---------------------------------- ;; +(defun display-startup-echo-area-message () + "Display a blank message in the echo area on startup. + +This overrides the default `display-startup-echo-area-message' function." + (message "")) + (defun user/ensure-region-active (func &rest args) "Apply ARGS to FUNC only if `region-active-p' is non-nil." (when (region-active-p)