Skip to content

Commit

Permalink
Use list in init-desktop
Browse files Browse the repository at this point in the history
  • Loading branch information
pkryger committed Dec 17, 2024
1 parent 95744ba commit f2df5b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/init-desktop.el
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@

(defun exordium--restore-desktop ()
"Restore desktop."
(setq desktop-path `(,user-emacs-directory))
(setq desktop-path (list user-emacs-directory))
(setq desktop-save t)
(message (format "loading desktop from %s" desktop-path))
(message (format "Loading desktop from %s" desktop-path))
(desktop-read)
(desktop-save-mode 1))

Expand Down

0 comments on commit f2df5b2

Please sign in to comment.