Function: dired-read-regexp

dired-read-regexp is a byte-compiled function defined in dired.el.gz.

This function is obsolete since 24.5; use read-regexp instead.

Signature

(dired-read-regexp PROMPT &optional DEFAULT HISTORY)

Documentation

Read a regexp using read-regexp.

Source Code

;; Defined in /usr/src/emacs/lisp/dired.el.gz
(defun dired-read-regexp (prompt &optional default history)
  "Read a regexp using `read-regexp'."
  (declare (obsolete read-regexp "24.5"))
  (read-regexp prompt default (or history 'dired-regexp-history)))