]> git.eshelyaron.com Git - emacs.git/commitdiff
* filecache.el: Fix typos in docstrings.
authorJuanma Barranquero <lekktu@gmail.com>
Fri, 23 Apr 2010 00:15:47 +0000 (02:15 +0200)
committerJuanma Barranquero <lekktu@gmail.com>
Fri, 23 Apr 2010 00:15:47 +0000 (02:15 +0200)
lisp/ChangeLog
lisp/filecache.el

index 63bd341d779ea12382f683c738d4f49c0808e52c..8de72e751fdedfcd947ea7157a83a75b9eb5532d 100644 (file)
@@ -1,3 +1,8 @@
+2010-04-23  Juanma Barranquero  <lekktu@gmail.com>
+
+       * filecache.el (file-cache-add-directory-list)
+       (file-cache-add-directory-recursively): Fix typos in docstrings.
+
 2010-04-22  Kenichi Handa  <handa@m17n.org>
 
        * language/indian.el (gurmukhi-composable-pattern): Fix typo.
index d8a284d7dce3181a03f93d1de98260f7c47b733d..b4b1e8bd95413aa7fcfdf0be49d971725fe7a46b 100644 (file)
@@ -296,8 +296,8 @@ be added to the cache."
 (defun file-cache-add-directory-list (directory-list &optional regexp)
   "Add DIRECTORY-LIST (a list of directory names) to the file cache.
 If the optional REGEXP argument is non-nil, only files which match it
-will be added to the cache. Note that the REGEXP is applied to the files
-in each directory, not to the directory list itself."
+will be added to the cache.  Note that the REGEXP is applied to the
+files in each directory, not to the directory list itself."
   (interactive "XAdd files from directory list: ")
   (mapcar
    (lambda (dir) (file-cache-add-directory dir regexp))
@@ -370,10 +370,10 @@ STRING is passed as an argument to the locate command."
 ;;;###autoload
 (defun file-cache-add-directory-recursively  (dir &optional regexp)
   "Adds DIR and any subdirectories to the file-cache.
-This function does not use any external programs
+This function does not use any external programs.
 If the optional REGEXP argument is non-nil, only files which match it
-will be added to the cache. Note that the REGEXP is applied to the files
-in each directory, not to the directory list itself."
+will be added to the cache.  Note that the REGEXP is applied to the
+files in each directory, not to the directory list itself."
   (interactive "DAdd directory: ")
   (require 'find-lisp)
   (mapcar