1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-04 11:40:22 +00:00

Correct cycle-spacing-actions type

* lisp/simple.el (cycle-spacing-actions): Fix type for predefined
action with fixed numeric arg case.
This commit is contained in:
Robert Pluim 2022-05-17 17:38:18 +02:00
parent 731ccac828
commit 45ec56f5bd

View File

@ -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")