Function: apropos-describe-plist

apropos-describe-plist is a byte-compiled function defined in apropos.el.gz.

Signature

(apropos-describe-plist SYMBOL)

Documentation

Display a pretty listing of SYMBOL's plist.

Source Code

;; Defined in /usr/src/emacs/lisp/apropos.el.gz
(defun apropos-describe-plist (symbol)
  "Display a pretty listing of SYMBOL's plist."
  (let ((help-buffer-under-preparation t))
    (help-setup-xref (list 'apropos-describe-plist symbol)
		     (called-interactively-p 'interactive))
    (with-help-window (help-buffer)
      (set-buffer standard-output)
      (princ "Symbol ")
      (prin1 symbol)
      (princ (substitute-command-keys "'s plist is\n ("))
      (put-text-property (+ (point-min) 7) (- (point) 14)
                         'face 'apropos-symbol)
      (insert (apropos-format-plist symbol "\n  "))
      (princ ")"))))