Function: hycontrol-invert-prefix-arg
hycontrol-invert-prefix-arg is an interactive and byte-compiled
function defined in hycontrol.el.
Signature
(hycontrol-invert-prefix-arg)
Documentation
Invert the sign of the current Hycontrol prefix argument.
If the argument is 0, set it to -1.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hycontrol.el
(defun hycontrol-invert-prefix-arg ()
"Invert the sign of the current Hycontrol prefix argument.
If the argument is 0, set it to -1."
(interactive)
(setq this-command 'hycontrol-invert-prefix-arg
hycontrol-arg (if (zerop hycontrol-arg) -1 (- hycontrol-arg))))