projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
731ccac
)
Correct cycle-spacing-actions type
author
Robert Pluim
<rpluim@gmail.com>
Tue, 17 May 2022 15:38:18 +0000
(17:38 +0200)
committer
Robert 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
patch
|
blob
|
history
diff --git
a/lisp/simple.el
b/lisp/simple.el
index 4229a898cb9679f49566201125060e557026f723..cd7a82b7acaf9abe1122fdb3f9b50c5409ef3114 100644
(file)
--- 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")