diff options
| -rw-r--r-- | lisp/org/ChangeLog | 2 | ||||
| -rw-r--r-- | lisp/org/org-publish.el | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog index 8cfd1ccc9a1..ff7c0e50d2d 100644 --- a/lisp/org/ChangeLog +++ b/lisp/org/ChangeLog | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | 2008-11-15 Carsten Dominik <dominik@science.uva.nl> | 1 | 2008-11-15 Carsten Dominik <dominik@science.uva.nl> |
| 2 | 2 | ||
| 3 | * org-publish.el (org-publish-attachment): Alow copy-file to | 3 | * org-publish.el (org-publish-attachment): Allow copy-file to |
| 4 | overwrite files. | 4 | overwrite files. |
| 5 | 5 | ||
| 6 | 2008-11-13 Glenn Morris <rgm@gnu.org> | 6 | 2008-11-13 Glenn Morris <rgm@gnu.org> |
diff --git a/lisp/org/org-publish.el b/lisp/org/org-publish.el index aa8c495b732..bbd91805121 100644 --- a/lisp/org/org-publish.el +++ b/lisp/org/org-publish.el | |||
| @@ -537,7 +537,7 @@ See `org-publish-org-to' to the list of arguments." | |||
| 537 | ;; make sure eshell/cp code is loaded | 537 | ;; make sure eshell/cp code is loaded |
| 538 | (unless (file-directory-p pub-dir) | 538 | (unless (file-directory-p pub-dir) |
| 539 | (make-directory pub-dir t)) | 539 | (make-directory pub-dir t)) |
| 540 | (copy-file filename pub-dir)) | 540 | (copy-file filename pub-dir t)) |
| 541 | 541 | ||
| 542 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | 542 | ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; |
| 543 | ;;; Publishing files, sets of files, and indices | 543 | ;;; Publishing files, sets of files, and indices |