Function: apropos-library-button

apropos-library-button is a byte-compiled function defined in apropos.el.gz.

Signature

(apropos-library-button SYM)

Source Code

;; Defined in /usr/src/emacs/lisp/apropos.el.gz
(defun apropos-library-button (sym)
  (if (null sym)
      "<nothing>"
    (let ((name (symbol-name sym)))
      (make-text-button name nil
                        'type 'apropos-library
                        'face 'apropos-symbol
                        'apropos-symbol name))))