Function: srecode-template-inserter-ask-p

srecode-template-inserter-ask-p is a byte-compiled function defined in insert.el.gz.

Signature

(srecode-template-inserter-ask-p OBJ)

Documentation

Return non-nil if OBJ is an object of type srecode-template-inserter-ask(var)/srecode-template-inserter-ask(fun).

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/insert.el.gz
(defclass srecode-template-inserter-ask (srecode-template-inserter-variable)
  ((key :initform ??
	:allocation :class
	:documentation
	"The character code used to identify inserters of this style.")
   (prompt :initarg :prompt
	   :initform nil
	   :documentation
	   "The prompt used to query for this dictionary value.")
   (defaultfcn :initarg :defaultfcn
	       :initform nil
	       :documentation
	       "The function which can calculate a default value.")
   (read-fcn :initarg :read-fcn
	     :initform 'read-string
	     :documentation
	     "The function used to read in the text for this prompt.")
   )
  "Insert the value of a dictionary entry.
If there is no entry, prompt the user for the value to use.
The prompt text used is derived from the previous PROMPT command in the
template file.")