Emacs: Replace concat with expand-file-name.

This commit is contained in:
tastytea 2020-03-18 12:16:08 +01:00
parent e7eab3ae69
commit 9a257f6213
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
;;; init.el --- tastytea's Emacs init file. -*- lexical-binding: t; -*-
;; Time-stamp: <2020-03-15T12:48:57+0100>
;; Time-stamp: <2020-03-16T00:47:13+0100>
;;; Commentary:
;; Requires at least Emacs 26. Most of it will probably work with Emacs 24 and
@ -17,7 +17,7 @@
"Set garbage collection threshold to 20 MiB to speed up init.")
;; Add path to init files.
(push (concat user-emacs-directory "init.d") load-path)
(push (expand-file-name "init.d" user-emacs-directory) load-path)
(require 'basics/package-management)
(require 'basics/early-packages)