We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fb9a2b commit bfd63ccCopy full SHA for bfd63cc
lisp/org.el
@@ -8901,7 +8901,8 @@ When called through ELisp, arg is also interpreted in the following way:
8901
nil cl
8902
(when (org-invisible-p) (org-end-of-subtree nil t))))
8903
(when (equal arg '(16)) (setq arg 'nextset))
8904
- (when (equal arg -1) (org-cancel-repeater) (setq arg nil))
+ (when (equal (prefix-numeric-value arg) -1) (org-cancel-repeater) (setq arg nil))
8905
+ (when (< (prefix-numeric-value arg) -1) (user-error "Prefix argument %d not supported" arg))
8906
(let ((org-blocker-hook org-blocker-hook)
8907
commentp
8908
case-fold-search)
0 commit comments