Function: hydra--negative-argument
hydra--negative-argument is an interactive and byte-compiled function
defined in hydra.el.
Signature
(hydra--negative-argument ARG)
Documentation
Forward to (negative-argument ARG).
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hydra-20250316.1254/hydra.el
(defun hydra--negative-argument (arg)
"Forward to (`negative-argument' ARG)."
(interactive "P")
(setq prefix-arg (cond ((integerp arg) (- arg))
((eq arg '-) nil)
(t '-))))