Function: ad-read-advice-specification

ad-read-advice-specification is a byte-compiled function defined in advice.el.gz.

Signature

(ad-read-advice-specification &optional PROMPT)

Documentation

Read a complete function/class/name specification from minibuffer.

The list of read symbols will be returned. The optional PROMPT will be used to prompt for the function.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/advice.el.gz
(defun ad-read-advice-specification (&optional prompt)
  "Read a complete function/class/name specification from minibuffer.
The list of read symbols will be returned.  The optional PROMPT will
be used to prompt for the function."
  (let* ((function (ad-read-advised-function prompt))
	 (class (ad-read-advice-class function))
	 (name (ad-read-advice-name function class)))
    (list function class name)))