Fix usage without XDG_*_HOME

`concatenate' does not work as I thought, cannot handle list
arguments, except `nil'.
This commit is contained in:
Tom Willemsen 2013-04-06 15:39:47 +02:00
parent 5ca43f20ca
commit ce8cfd58f4

View file

@ -107,19 +107,23 @@ The result contains the url, name and the description of the bookmark."
(defun get-db-location () (defun get-db-location ()
"Get the location of the database." "Get the location of the database."
(pathname (let ((xdg (sb-ext:posix-getenv "XDG_DATA_HOME"))
(apply 'concatenate 'string (home (sb-ext:posix-getenv "HOME")))
(or (sb-ext:posix-getenv "XDG_DATA_HOME") (pathname
(list (sb-ext:posix-getenv "HOME") "/.local/share")) (apply 'concatenate 'string
'("/clark/bookmarks.db")))) (or xdg home)
(unless xdg "/.local/share")
'("/clark/bookmarks.db")))))
(defun get-rc-location () (defun get-rc-location ()
"Get the location of the RC file." "Get the location of the RC file."
(pathname (let ((xdg (sb-ext:posix-getenv "XDG_CONFIG_HOME"))
(apply 'concatenate 'string (home (sb-ext:posix-getenv "HOME")))
(or (sb-ext:posix-getenv "XDG_CONFIG_HOME") (pathname
(list (sb-ext:posix-getenv "HOME") "/.config")) (apply 'concatenate 'string
'("/clark/rc.lisp")))) (or xdg home)
(unless xdg "/.config")
'("/clark/rc.lisp")))))
(defun get-tag-id (name) (defun get-tag-id (name)
"Get the rowid of tag NAME." "Get the rowid of tag NAME."