diff options
| author | Carsten Dominik | 2008-11-15 06:44:19 +0000 |
|---|---|---|
| committer | Carsten Dominik | 2008-11-15 06:44:19 +0000 |
| commit | d7dbaa7d1cbcdcadcd309e2a1fbba21ea0b1ec53 (patch) | |
| tree | 8d9a862c35492fee6f518ecfac1e46bc4a4801a0 | |
| parent | 4389931e6ac666aa4c0bea9f90429c095c426b70 (diff) | |
| download | emacs-d7dbaa7d1cbcdcadcd309e2a1fbba21ea0b1ec53.tar.gz emacs-d7dbaa7d1cbcdcadcd309e2a1fbba21ea0b1ec53.zip | |
* org-publish.el (org-publish-attachment): Alow copy-file to
overwrite files.
| -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 |