Function: button--properties

button--properties is a byte-compiled function defined in compat-29.el.

Signature

(button--properties CALLBACK DATA HELP-ECHO)

Documentation

[Compatibility function for button--properties, defined in Emacs 29.1. See
(compat) Emacs 29.1' for more details.]

Helper function.

Source Code

;; Defined in ~/.emacs.d/elpa/compat-30.1.0.1/compat-29.el
;;;; Defined in button.el

(compat-defun button--properties (callback data help-echo) ;; <compat-tests:buttonize>
  "Helper function."
  (list 'font-lock-face 'button
        'mouse-face 'highlight
        'help-echo help-echo
        'button t
        'follow-link t
        'category t
        'button-data data
        'keymap button-map
        'action callback))