Function: hypb:format-args
hypb:format-args is a byte-compiled function defined in hypb.el.
Signature
(hypb:format-args ARGS)
Documentation
Return a space-separated string of quoted ARGS without surrounding parentheses.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hypb.el
(defun hypb:format-args (args)
"Return a space-separated string of quoted ARGS without surrounding parentheses."
(if args (mapconcat (lambda (a) (format "%S" a)) args " ") ""))