aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2008-10-19 10:21:25 +0000
committerEli Zaretskii2008-10-19 10:21:25 +0000
commit34767325fa6c2e2bcd5e0c8523160abc6a5c4bc2 (patch)
treec0aee874a1996e53a0cc87382881043ad5a7b46c
parent727c1234abaf1a41b916f120d9e7578befa6a592 (diff)
downloademacs-34767325fa6c2e2bcd5e0c8523160abc6a5c4bc2.tar.gz
emacs-34767325fa6c2e2bcd5e0c8523160abc6a5c4bc2.zip
(org-publish-timestamp-directory): Run file names that begin with a period thru
`convert-standard-filename'.
-rw-r--r--lisp/org/ChangeLog7
-rw-r--r--lisp/org/org-publish.el3
2 files changed, 9 insertions, 1 deletions
diff --git a/lisp/org/ChangeLog b/lisp/org/ChangeLog
index d4371e05d99..f7c3c58c9c8 100644
--- a/lisp/org/ChangeLog
+++ b/lisp/org/ChangeLog
@@ -1,3 +1,10 @@
12008-10-19 Eli Zaretskii <eliz@gnu.org>
2
3 * org.el (org-default-notes-file):
4 * org-publish.el (org-publish-timestamp-directory):
5 * org-id.el (org-id-locations-file): Run file names that begin
6 with a period thru `convert-standard-filename'.
7
12008-10-12 Carsten Dominik <dominik@science.uva.nl> 82008-10-12 Carsten Dominik <dominik@science.uva.nl>
2 9
3 * org-plot.el: Switch coding system to unix. 10 * org-plot.el: Switch coding system to unix.
diff --git a/lisp/org/org-publish.el b/lisp/org/org-publish.el
index a8279e3e1e2..406da0c484e 100644
--- a/lisp/org/org-publish.el
+++ b/lisp/org/org-publish.el
@@ -276,7 +276,8 @@ When nil, do no timestamp checking and always publish all files."
276 :group 'org-publish 276 :group 'org-publish
277 :type 'boolean) 277 :type 'boolean)
278 278
279(defcustom org-publish-timestamp-directory "~/.org-timestamps/" 279(defcustom org-publish-timestamp-directory
280 (convert-standard-filename "~/.org-timestamps/")
280 "Name of directory in which to store publishing timestamps." 281 "Name of directory in which to store publishing timestamps."
281 :group 'org-publish 282 :group 'org-publish
282 :type 'directory) 283 :type 'directory)