]> git.eshelyaron.com Git - emacs.git/commitdiff
(cvs-vc-command-advice): Fix a typo in code (file->files).
authorSam Steingold <sds@gnu.org>
Wed, 22 Aug 2007 15:48:22 +0000 (15:48 +0000)
committerSam Steingold <sds@gnu.org>
Wed, 22 Aug 2007 15:48:22 +0000 (15:48 +0000)
lisp/ChangeLog
lisp/pcvs.el

index 0b45104acb3dfcef791468cb0053bbe3d0c049a2..6a4e181ac6c2b19c8136e2416529d6266827ecdc 100644 (file)
@@ -1,3 +1,7 @@
+2007-08-22  Sam Steingold  <sds@gnu.org>
+
+       * pcvs.el (cvs-vc-command-advice): Fix a typo in code (file->files).
+
 2007-08-22  Carsten Dominik  <dominik@science.uva.nl>
 
        * textmodes/org-export-latex.el: New file.
@@ -69,7 +73,7 @@
        (org-clock-out-if-current): Respect `org-clock-out-when-done'.
        (org-clock-out-when-done): New option.
        (org-html-entities): Added HTML entities for smileys.
-       
+
 
 2007-08-22  Glenn Morris  <rgm@gnu.org>
 
index 21cfd5b042dd9adcbbebd308e46d242d29b85c66..7da13cfd0b2e36ac122d59e0e6455e6bef6f2319 100644 (file)
@@ -2384,7 +2384,7 @@ The exact behavior is determined also by `cvs-dired-use-hook'."
              (when (and (equal (car flags) "add")
                         (goto-char (point-min))
                         (looking-at ".*to add this file permanently\n\\'"))
-                (dolist (file (if (listp files) files (list file)))
+                (dolist (file (if (listp files) files (list files)))
                   (insert "cvs add: scheduling file `"
                           (file-name-nondirectory file)
                           "' for addition\n")))