From 964b7dcbeef4ce16bd677221c389b7ce4ca35ae2 Mon Sep 17 00:00:00 2001 From: Henrik Lissner Date: Fri, 29 Jul 2022 12:57:08 +0200 Subject: [PATCH] fix(cli): indentation & docstring highlights for defstub! --- core/core-cli-lib.el | 1 + 1 file changed, 1 insertion(+) diff --git a/core/core-cli-lib.el b/core/core-cli-lib.el index 568956b11..d52b25605 100644 --- a/core/core-cli-lib.el +++ b/core/core-cli-lib.el @@ -1601,6 +1601,7 @@ WHEN specifies what version this command was rendered obsolete." Use this to define commands that will eventually be implemented, but haven't yet. They won't be included in command listings (by help documentation)." + (declare (indent 2) (doc-string 3)) `(defcli! ,commandspec (&rest _) ,(concat "THIS COMMAND IS A STUB AND HAS NOT BEEN IMPLEMENTED YET." (if (stringp (car body)) (concat "\n\n" (pop body))))