diff options
| author | Sam Steingold | 2007-08-22 15:48:22 +0000 |
|---|---|---|
| committer | Sam Steingold | 2007-08-22 15:48:22 +0000 |
| commit | dae2bd5682f7cb2835f3cabc0753888656bab17e (patch) | |
| tree | 22a4a4fa31a3364ba0d7d5bf4ce8823831103c04 | |
| parent | fd3c02d8cba997ee981e620adb12b58a0165a437 (diff) | |
| download | emacs-dae2bd5682f7cb2835f3cabc0753888656bab17e.tar.gz emacs-dae2bd5682f7cb2835f3cabc0753888656bab17e.zip | |
(cvs-vc-command-advice): Fix a typo in code (file->files).
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/pcvs.el | 2 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0b45104acb3..6a4e181ac6c 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2007-08-22 Sam Steingold <sds@gnu.org> | ||
| 2 | |||
| 3 | * pcvs.el (cvs-vc-command-advice): Fix a typo in code (file->files). | ||
| 4 | |||
| 1 | 2007-08-22 Carsten Dominik <dominik@science.uva.nl> | 5 | 2007-08-22 Carsten Dominik <dominik@science.uva.nl> |
| 2 | 6 | ||
| 3 | * textmodes/org-export-latex.el: New file. | 7 | * textmodes/org-export-latex.el: New file. |
| @@ -69,7 +73,7 @@ | |||
| 69 | (org-clock-out-if-current): Respect `org-clock-out-when-done'. | 73 | (org-clock-out-if-current): Respect `org-clock-out-when-done'. |
| 70 | (org-clock-out-when-done): New option. | 74 | (org-clock-out-when-done): New option. |
| 71 | (org-html-entities): Added HTML entities for smileys. | 75 | (org-html-entities): Added HTML entities for smileys. |
| 72 | 76 | ||
| 73 | 77 | ||
| 74 | 2007-08-22 Glenn Morris <rgm@gnu.org> | 78 | 2007-08-22 Glenn Morris <rgm@gnu.org> |
| 75 | 79 | ||
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'." | |||
| 2384 | (when (and (equal (car flags) "add") | 2384 | (when (and (equal (car flags) "add") |
| 2385 | (goto-char (point-min)) | 2385 | (goto-char (point-min)) |
| 2386 | (looking-at ".*to add this file permanently\n\\'")) | 2386 | (looking-at ".*to add this file permanently\n\\'")) |
| 2387 | (dolist (file (if (listp files) files (list file))) | 2387 | (dolist (file (if (listp files) files (list files))) |
| 2388 | (insert "cvs add: scheduling file `" | 2388 | (insert "cvs add: scheduling file `" |
| 2389 | (file-name-nondirectory file) | 2389 | (file-name-nondirectory file) |
| 2390 | "' for addition\n"))) | 2390 | "' for addition\n"))) |