summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Meyer <kyle@kyleam.com>2014-12-07 22:59:11 -0500
committerKyle Meyer <kyle@kyleam.com>2014-12-07 22:59:11 -0500
commit3f2e4104fd289bf8b0eae496abfbbacd956bb8b7 (patch)
treecd09f49fbaea9d25a2b642bfb5dcd975247709af
parentbcdeb05f380b0e1c68a75626cf3840edf915c67f (diff)
downloadbog-3f2e4104fd289bf8b0eae496abfbbacd956bb8b7.tar.gz
Use '/' after directory names
-rw-r--r--bog.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/bog.el b/bog.el
index d0d3b51..9ceaf85 100644
--- a/bog.el
+++ b/bog.el
@@ -75,25 +75,25 @@ The default corresponds to the default value of
:group 'bog
:type 'string)
-(defcustom bog-root-directory "~/bib"
+(defcustom bog-root-directory "~/bib/"
"Root directory for default values of other Bog directories."
:group 'bog
:type 'string)
(defcustom bog-notes-directory
- (expand-file-name "notes" bog-root-directory)
+ (expand-file-name "notes/" bog-root-directory)
"Directory with Org research notes."
:group 'bog
:type 'string)
(defcustom bog-file-directory
- (expand-file-name "citekey-files" bog-root-directory)
+ (expand-file-name "citekey-files/" bog-root-directory)
"Directory with citekey-associated files."
:group 'bog
:type 'string)
(defcustom bog-stage-directory
- (expand-file-name "stage" bog-root-directory)
+ (expand-file-name "stage/" bog-root-directory)
"Directory to search for new files.
`bog-rename-staged-file-to-citekey' and
`bog-rename-staged-bib-to-citekey' will search here for files to
@@ -114,7 +114,7 @@ entry."
:type 'function)
(defcustom bog-bib-directory
- (expand-file-name "bibs" bog-root-directory)
+ (expand-file-name "bibs/" bog-root-directory)
"The name of the directory that BibTeX files are stored in.
This is only meaningful if `bog-find-citekey-bib-func' set to
`bog-find-citekey-bib-file'."