[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/helm 67b2afb775 2/4: Declare doc-string in helm-multi-key-
|
From: |
ELPA Syncer |
|
Subject: |
[nongnu] elpa/helm 67b2afb775 2/4: Declare doc-string in helm-multi-key-defun |
|
Date: |
Sat, 4 Nov 2023 15:59:58 -0400 (EDT) |
branch: elpa/helm
commit 67b2afb775f4972a6c62d3ac70974896c239f863
Author: Thierry Volpiatto <thievol@posteo.net>
Commit: Thierry Volpiatto <thievol@posteo.net>
Declare doc-string in helm-multi-key-defun
---
helm-core.el | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/helm-core.el b/helm-core.el
index 5d51102c41..73dec77889 100644
--- a/helm-core.el
+++ b/helm-core.el
@@ -229,7 +229,7 @@ executing the first function on the next hit."
"Define NAME as a multi-key command running FUNS.
After DELAY seconds, the FUNS list is reinitialized.
See `helm-define-multi-key'."
- (declare (indent 2))
+ (declare (indent 2) (doc-string 2))
(setq docstring (if docstring (concat docstring "\n\n")
"This is a helm-ish multi-key command."))
`(defalias (quote ,name) (helm-make-multi-command ,funs ,delay) ,docstring))