summaryrefslogtreecommitdiff
path: root/lisp/simple.el
diff options
context:
space:
mode:
authorRobert Pluim <rpluim@gmail.com>2022-05-17 17:38:18 +0200
committerRobert Pluim <rpluim@gmail.com>2022-05-17 17:39:14 +0200
commit45ec56f5bd0832285a7b03c2ceaa5546ba59652d (patch)
tree2c8aa1e8dc7febf63211e89541701cf4854e7a46 /lisp/simple.el
parent731ccac82806bc0823f23d5acad7894b998905e7 (diff)
downloademacs-45ec56f5bd0832285a7b03c2ceaa5546ba59652d.tar.gz
emacs-45ec56f5bd0832285a7b03c2ceaa5546ba59652d.tar.bz2
emacs-45ec56f5bd0832285a7b03c2ceaa5546ba59652d.zip
Correct cycle-spacing-actions type
* lisp/simple.el (cycle-spacing-actions): Fix type for predefined action with fixed numeric arg case.
Diffstat (limited to 'lisp/simple.el')
-rw-r--r--lisp/simple.el2
1 files changed, 1 insertions, 1 deletions
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")