emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-23 r99775: * filecache.el: Fix typos


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-23 r99775: * filecache.el: Fix typos in docstrings.
Date: Fri, 23 Apr 2010 02:15:47 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 99775
committer: Juanma Barranquero <address@hidden>
branch nick: emacs-23
timestamp: Fri 2010-04-23 02:15:47 +0200
message:
  * filecache.el: Fix typos in docstrings.
modified:
  lisp/ChangeLog
  lisp/filecache.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2010-04-22 04:59:50 +0000
+++ b/lisp/ChangeLog    2010-04-23 00:15:47 +0000
@@ -1,3 +1,8 @@
+2010-04-23  Juanma Barranquero  <address@hidden>
+
+       * filecache.el (file-cache-add-directory-list)
+       (file-cache-add-directory-recursively): Fix typos in docstrings.
+
 2010-04-22  Kenichi Handa  <address@hidden>
 
        * language/indian.el (gurmukhi-composable-pattern): Fix typo.

=== modified file 'lisp/filecache.el'
--- a/lisp/filecache.el 2010-01-13 08:35:10 +0000
+++ b/lisp/filecache.el 2010-04-23 00:15:47 +0000
@@ -296,8 +296,8 @@
 (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 @@
 ;;;###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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]