Function: hsys-org-meta-return
hsys-org-meta-return is an autoloaded, interactive and byte-compiled
function defined in hsys-org.el.
Signature
(hsys-org-meta-return)
Documentation
Call org-meta-return with the numeric value of any prefix arg when given.
Do nothing if called outside of org-mode.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hsys-org.el
;;;###autoload
(defun hsys-org-meta-return ()
"Call `org-meta-return' with the numeric value of any prefix arg when given.
Do nothing if called outside of `org-mode'."
(interactive "P")
(when (apply #'derived-mode-p '(org-mode))
(when buffer-read-only
(error "(hsys-org-meta-return): \"%s\" must not be read-only; toggle with {%s}"
(buffer-name)
(key-description (car (where-is-internal #'read-only-mode)))))
(if current-prefix-arg
(org-meta-return (prefix-numeric-value current-prefix-arg))
(org-meta-return))))