From 45ec56f5bd0832285a7b03c2ceaa5546ba59652d Mon Sep 17 00:00:00 2001 From: Robert Pluim Date: Tue, 17 May 2022 17:38:18 +0200 Subject: [PATCH] Correct cycle-spacing-actions type * lisp/simple.el (cycle-spacing-actions): Fix type for predefined action with fixed numeric arg case. --- lisp/simple.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/simple.el b/lisp/simple.el index 4229a898cb9..cd7a82b7aca 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1177,7 +1177,7 @@ and ARG is either (list :tag "Action with modified arg" (choice ,@actions) (choice (const :tag "Inverted prefix arg" inverted-arg) - (const :tag "Fixed numeric arg" integer) + (integer :tag "Fixed numeric arg") (const :tag "Negative arg" -))) (const :tag "Restore the original spacing" restore)))) :version "29.1") -- 2.39.2