Function: tpu-regexp-prompt

tpu-regexp-prompt is a byte-compiled function defined in tpu-edt.el.gz.

Signature

(tpu-regexp-prompt PROMPT)

Documentation

Read a string, adding RE to the prompt if tpu-regexp-p is set.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/tpu-edt.el.gz
(defun tpu-regexp-prompt (prompt)
  "Read a string, adding `RE ' to the prompt if tpu-regexp-p is set."
  (let ((re-prompt (concat (if tpu-regexp-p "RE ") prompt)))
    (read-from-minibuffer re-prompt nil nil nil 'tpu-regexp-prompt-hist)))