|
@@ -68,7 +68,7 @@ doesn't exist, use the .coleslawrc in the home directory."
|
68
|
68
|
(defun load-config (&optional (repo-dir ""))
|
69
|
69
|
"Find and load the coleslaw configuration from .coleslawrc. REPO-DIR will be
|
70
|
70
|
preferred over the home directory if provided."
|
71
|
|
- (with-open-file (in (discover-config-path repo-dir) :external-format '(:utf-8))
|
|
71
|
+ (with-open-file (in (discover-config-path repo-dir) :external-format :utf-8)
|
72
|
72
|
(let ((config-form (read in)))
|
73
|
73
|
(setf *config* (construct 'blog config-form)
|
74
|
74
|
(repo *config*) repo-dir)))
|