diff options
author | Glenn Morris <rgm@gnu.org> | 2014-02-13 22:59:24 -0800 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-02-13 22:59:24 -0800 |
commit | b2bf2a254fba3ec86fb763a95289f51251428ac4 (patch) | |
tree | 1a623d1ad69e6ddb80baa754555fb216caa08383 /lisp/faces.el | |
parent | 48c4f9b124a17b4056e0b93f490befb09947f410 (diff) | |
download | emacs-b2bf2a254fba3ec86fb763a95289f51251428ac4.tar.gz |
Mention read-regexp in doc of functions that use it
* lisp/dired.el (dired-read-regexp):
* lisp/faces.el (list-faces-display):
* lisp/misearch.el (multi-isearch-read-matching-buffers)
(multi-isearch-read-matching-files):
* lisp/play/cookie1.el (cookie-apropos):
* lisp/progmodes/grep.el (grep-read-regexp): Doc fixes.
Diffstat (limited to 'lisp/faces.el')
-rw-r--r-- | lisp/faces.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/faces.el b/lisp/faces.el index ed36522afb1..3394c721f04 100644 --- a/lisp/faces.el +++ b/lisp/faces.el @@ -1260,7 +1260,7 @@ The sample text is a string that comes from the variable If REGEXP is non-nil, list only those faces with names matching this regular expression. When called interactively with a prefix -arg, prompt for a regular expression." +argument, prompt for a regular expression using `read-regexp'." (interactive (list (and current-prefix-arg (read-regexp "List faces matching regexp")))) (let ((all-faces (zerop (length regexp))) |