From a71ea16b90580183120e85eb585b72cd31500597 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Wed, 21 Jul 2021 09:24:31 +0200 Subject: [PATCH] nyxt: Make dev-data-profile use the next method instead of hard-coding expand-default-path. --- .config/nyxt/init.lisp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.config/nyxt/init.lisp b/.config/nyxt/init.lisp index 939a4fa4..76e1c50c 100644 --- a/.config/nyxt/init.lisp +++ b/.config/nyxt/init.lisp @@ -301,9 +301,10 @@ format." (defmethod nyxt:expand-data-path ((profile dev-data-profile) (path data-path)) "Persist data to /tmp/nyxt/." - (expand-default-path (make-instance (class-name (class-of path)) - :basename (basename path) - :dirname "/tmp/nyxt/"))) + (call-next-method profile + (make-instance (class-name (class-of path)) + :basename (basename path) + :dirname "/tmp/nyxt/"))) ;; After init: (load (nyxt-init-file "config.lisp"))