]> git.eshelyaron.com Git - emacs.git/commitdiff
Correct cycle-spacing-actions type
authorRobert Pluim <rpluim@gmail.com>
Tue, 17 May 2022 15:38:18 +0000 (17:38 +0200)
committerRobert Pluim <rpluim@gmail.com>
Tue, 17 May 2022 15:39:14 +0000 (17:39 +0200)
* lisp/simple.el (cycle-spacing-actions): Fix type for predefined
action with fixed numeric arg case.

lisp/simple.el

index 4229a898cb9679f49566201125060e557026f723..cd7a82b7acaf9abe1122fdb3f9b50c5409ef3114 100644 (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")