Skip to content

Commit

Permalink
fix directory name creation
Browse files Browse the repository at this point in the history
Signed-off-by: Psionik K <[email protected]>
  • Loading branch information
psionic-k committed Dec 28, 2023
1 parent 9993376 commit 7ea9c6d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lisp/scratch-pkgs.el
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@

(declare-function no-littering-expand-var-file-name "no-littering")
(defcustom scratch-pkgs-dir
(file-name-directory (if (featurep 'no-littering)
(no-littering-expand-var-file-name "scratch-pkgs")
(expand-file-name "var/scratch-pkgs" user-emacs-directory)))
(file-name-as-directory (if (featurep 'no-littering)
(no-littering-expand-var-file-name "scratch-pkgs")
(expand-file-name "var/scratch-pkgs" user-emacs-directory)))
"Where scratches are saved."
:group 'scratch-pkgs
:type 'directory)
Expand Down

0 comments on commit 7ea9c6d

Please sign in to comment.