Function: hargs:actype-get

hargs:actype-get is a byte-compiled function defined in hargs.el.

Signature

(hargs:actype-get ACTYPE &optional EDITING-FLAG)

Documentation

Interactively get and return list of arguments for ACTYPE's parameters.

Current button is being edited when EDITING-FLAG is non-nil.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hargs.el
;;; ************************************************************************
;;; More Public functions
;;; ************************************************************************

(defun hargs:actype-get (actype &optional editing-flag)
  "Interactively get and return list of arguments for ACTYPE's parameters.
Current button is being edited when EDITING-FLAG is non-nil."
  (when editing-flag
    (setq editing-flag t))
  (hargs:action-get (actype:action-body actype) editing-flag))