From: Sam Steingold Date: Wed, 22 Aug 2007 15:48:22 +0000 (+0000) Subject: (cvs-vc-command-advice): Fix a typo in code (file->files). X-Git-Tag: emacs-pretest-23.0.90~11378 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=dae2bd5682f7cb2835f3cabc0753888656bab17e;p=emacs.git (cvs-vc-command-advice): Fix a typo in code (file->files). --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0b45104acb3..6a4e181ac6c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2007-08-22 Sam Steingold + + * pcvs.el (cvs-vc-command-advice): Fix a typo in code (file->files). + 2007-08-22 Carsten Dominik * 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 diff --git a/lisp/pcvs.el b/lisp/pcvs.el index 21cfd5b042d..7da13cfd0b2 100644 --- a/lisp/pcvs.el +++ b/lisp/pcvs.el @@ -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")))