aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann1999-11-24 16:21:12 +0000
committerGerd Moellmann1999-11-24 16:21:12 +0000
commit9be8f65795e6a184b32dd7e5785b635b898d2785 (patch)
treeaa1c13e095ff92b14c7262c277186ba2545590c2
parent46d94d0dfb254a2f663665a3d0d9f1fdc342ac40 (diff)
downloademacs-9be8f65795e6a184b32dd7e5785b635b898d2785.tar.gz
emacs-9be8f65795e6a184b32dd7e5785b635b898d2785.zip
(locate-with-filter): Doc fix.
-rw-r--r--lisp/ChangeLog4
-rw-r--r--lisp/locate.el5
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 8fdf096a87b..ebd055a96ba 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,7 @@
11999-11-24 Gerd Moellmann <gerd@gnu.org>
2
3 * locate.el (locate-with-filter): Doc fix.
4
11999-11-24 Alex Schroeder <alex@gnu.org> 51999-11-24 Alex Schroeder <alex@gnu.org>
2 6
3 * sql.el (sql-find-sqli-buffer): New function. 7 * sql.el (sql-find-sqli-buffer): New function.
diff --git a/lisp/locate.el b/lisp/locate.el
index 947f8aa7deb..7d044d03a0e 100644
--- a/lisp/locate.el
+++ b/lisp/locate.el
@@ -218,7 +218,10 @@ With prefix arg, prompt for the locate command to run."
218 218
219;;;###autoload 219;;;###autoload
220(defun locate-with-filter (search-string filter) 220(defun locate-with-filter (search-string filter)
221 "Run the locate command with a filter." 221 "Run the locate command with a filter.
222
223The filter is a regular expression. Only results matching the filter are
224shown; this is often useful to constrain a big search."
222 (interactive 225 (interactive
223 (list (read-from-minibuffer "Locate: " nil nil 226 (list (read-from-minibuffer "Locate: " nil nil
224 nil 'locate-history-list) 227 nil 'locate-history-list)