1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-04-27 08:43:40 -07:00

; Fix Wrong type argument: number-or-marker-p, (4) in cycle-spacing

This commit is contained in:
Tassilo Horn 2022-05-16 14:26:29 +02:00
parent 006fd29ca1
commit 5a6e727ddb

View file

@ -1295,8 +1295,8 @@ doing any other command before the next \\[cycle-spacing]."
((eq '- arg) '-)
(t context-n)))
(numeric-n (prefix-numeric-value actual-n))
(include-newlines (and actual-n
(or (eq actual-n '-)
(include-newlines (or (eq actual-n '-)
(and (integerp actual-n)
(< actual-n 0)))))
(cond
((eq actual-action 'just-one-space)