diff options
| -rw-r--r-- | lisp/textmodes/org-publish.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/textmodes/org-publish.el b/lisp/textmodes/org-publish.el index 0a8e9019827..2b0777638c5 100644 --- a/lisp/textmodes/org-publish.el +++ b/lisp/textmodes/org-publish.el | |||
| @@ -294,7 +294,7 @@ files." | |||
| 294 | 294 | ||
| 295 | (defun org-publish-timestamp-filename (filename) | 295 | (defun org-publish-timestamp-filename (filename) |
| 296 | "Return path to timestamp file for filename FILENAME." | 296 | "Return path to timestamp file for filename FILENAME." |
| 297 | (while (string-match "~\\|/" filename) | 297 | (while (string-match "~\\|/\\|:/" filename) |
| 298 | (setq filename (replace-match "_" nil t filename))) | 298 | (setq filename (replace-match "_" nil t filename))) |
| 299 | (concat org-publish-timestamp-directory filename ".timestamp")) | 299 | (concat org-publish-timestamp-directory filename ".timestamp")) |
| 300 | 300 | ||