diff options
author | Tassilo Horn <tsdh@gnu.org> | 2022-05-16 10:08:40 +0200 |
---|---|---|
committer | Tassilo Horn <tsdh@gnu.org> | 2022-05-16 10:08:40 +0200 |
commit | e7a8136e340fce082c754f31075420226384d004 (patch) | |
tree | 8787a3a80cb226d0edf07a89f7bb04442041751b /lisp/simple.el | |
parent | 2ba42e596a2b1c4fbd6c81ff18a43a7151482549 (diff) | |
download | emacs-e7a8136e340fce082c754f31075420226384d004.tar.gz emacs-e7a8136e340fce082c754f31075420226384d004.tar.bz2 emacs-e7a8136e340fce082c754f31075420226384d004.zip |
; cycle-spacing-actions: Add forgotten arg modifier - as customize choice
Diffstat (limited to 'lisp/simple.el')
-rw-r--r-- | lisp/simple.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/simple.el b/lisp/simple.el index 6cbc73e9426..ccf696901bd 100644 --- a/lisp/simple.el +++ b/lisp/simple.el @@ -1176,7 +1176,8 @@ ACTION is any action except for `restore' 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))) + (const :tag "Fixed numeric arg" integer) + (const :tag "Negative arg" -))) (const :tag "Restore the original spacing" restore)))) :version "29.1") |