* org-id.el (org-id-locations-file):

* org-clock.el (org-clock-persist-file): Fix hardcoded
reference to "~/.emacs.d".

* contrib/lisp/org-track.el (org-track-directory): Fix hardcoded
reference to "~/.emacs.d".
This commit is contained in:
Nicolas Richard 2013-01-09 16:41:12 +01:00 committed by Bastien Guerry
parent d1d7da4267
commit f82004840a
3 changed files with 3 additions and 3 deletions

View File

@ -72,7 +72,7 @@ time to time."
:version "22.1"
:group 'org)
(defcustom org-track-directory "~/.emacs.d/org/lisp"
(defcustom org-track-directory (concat user-emacs-directory "org/lisp")
"Directory where your org-mode/ directory lives.
If that directory does not exist, it will be created."
:type 'directory)

View File

@ -194,7 +194,7 @@ Emacs initialization file."
(const :tag "No persistence" nil)))
(defcustom org-clock-persist-file (convert-standard-filename
"~/.emacs.d/org-clock-save.el")
(concat user-emacs-directory "org-clock-save.el"))
"File to save clock data to."
:group 'org-clock
:type 'string)

View File

@ -186,7 +186,7 @@ the link."
:type 'boolean)
(defcustom org-id-locations-file (convert-standard-filename
"~/.emacs.d/.org-id-locations")
(concat user-emacs-directory ".org-id-locations"))
"The file for remembering in which file an ID was defined.
This variable is only relevant when `org-id-track-globally' is set."
:group 'org-id