From: Robert Pluim Date: Tue, 17 May 2022 15:38:18 +0000 (+0200) Subject: Correct cycle-spacing-actions type X-Git-Tag: emacs-29.0.90~1910^2~621 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=45ec56f5bd0832285a7b03c2ceaa5546ba59652d;p=emacs.git Correct cycle-spacing-actions type * lisp/simple.el (cycle-spacing-actions): Fix type for predefined action with fixed numeric arg case. --- 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")