emacs-elpa-diffs
[Top][All Lists]
Advanced

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

[elpa] externals/consult 9560552b3d: Add missing docstring


From: ELPA Syncer
Subject: [elpa] externals/consult 9560552b3d: Add missing docstring
Date: Mon, 9 Dec 2024 03:58:12 -0500 (EST)

branch: externals/consult
commit 9560552b3dcd25141e82e8dbb80465de026fc7eb
Author: Daniel Mendler <mail@daniel-mendler.de>
Commit: Daniel Mendler <mail@daniel-mendler.de>

    Add missing docstring
---
 consult.el | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/consult.el b/consult.el
index f85e683303..4513551fe1 100644
--- a/consult.el
+++ b/consult.el
@@ -1287,10 +1287,11 @@ ORIG is the original function, HOOKS the arguments."
         (apply orig hooks))
       (apply orig hooks)))
 
-(defun consult--minibuffer-message (&rest app)
+(defun consult--minibuffer-message (&rest msg)
+  "Show MSG in the minibuffer without logging."
   (with-selected-window (or (active-minibuffer-window) (selected-window))
     (let (message-log-max minibuffer-message-timeout)
-      (apply #'minibuffer-message app))))
+      (apply #'minibuffer-message msg))))
 
 (defun consult--find-file-temporarily-1 (name)
   "Open file NAME, helper function for `consult--find-file-temporarily'."



reply via email to

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