Function: hattr:list

hattr:list is a byte-compiled function defined in hbut.el.

Signature

(hattr:list OBJ)

Documentation

Return a property list of OBJ's attributes.

Each pair of elements is: <attrib-name> <attrib-value>.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hbut.el
(defun    hattr:list (obj)
  "Return a property list of OBJ's attributes.
Each pair of elements is: <attrib-name> <attrib-value>."
  (cond ((hattr:emacs-button-attributes obj))
	((symbolp obj)
	 (symbol-plist obj))
	(t (error "(hattr:list): Argument not a symbol: %s" obj))))