# HG changeset patch # User Sam Steingold # Date 1187797702 0 # Node ID 8ff02425f4dbd25e68f5e911b38a573406fa8364 # Parent 3a62285f3e394829abe24644c8c3664a860110ec (cvs-vc-command-advice): Fix a typo in code (file->files). diff -r 3a62285f3e39 -r 8ff02425f4db lisp/ChangeLog --- a/lisp/ChangeLog Wed Aug 22 11:52:16 2007 +0000 +++ b/lisp/ChangeLog Wed Aug 22 15:48:22 2007 +0000 @@ -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 -r 3a62285f3e39 -r 8ff02425f4db lisp/pcvs.el --- a/lisp/pcvs.el Wed Aug 22 11:52:16 2007 +0000 +++ b/lisp/pcvs.el Wed Aug 22 15:48:22 2007 +0000 @@ -2384,7 +2384,7 @@ (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")))