1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-29 07:58:28 +00:00

lisp/find-lisp.el: Fix typos in docstrings.

This commit is contained in:
Juanma Barranquero 2013-08-06 14:12:33 +02:00
parent c8c2aca8d0
commit 64e22afeb3
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2013-08-06 Juanma Barranquero <lekktu@gmail.com>
* find-lisp.el (find-lisp-line-indent, find-lisp-find-dired-filter):
Fix typos in docstrings.
2013-08-06 Dmitry Antipov <dmantipov@yandex.ru>
* frame.el (get-other-frame): Tiny cleanup.

View File

@ -53,7 +53,7 @@
"Internal variable.")
(defconst find-lisp-line-indent " "
"Indentation for dired file lines.")
"Indentation for Dired file lines.")
(defvar find-lisp-file-predicate nil
"Predicate for choosing to include files.")
@ -280,7 +280,7 @@ It is a function which takes two arguments, the directory and its parent."
;;;###autoload
(defun find-lisp-find-dired-filter (regexp)
"Change the filter on a find-lisp-find-dired buffer to REGEXP."
"Change the filter on a `find-lisp-find-dired' buffer to REGEXP."
(interactive "sSet filter to regexp: ")
(setq find-lisp-regexp regexp)
(revert-buffer))