We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b42e987 commit 32a461dCopy full SHA for 32a461d
init.el
@@ -45,7 +45,7 @@
45
46
(defun +load (&rest filename-parts)
47
"Load a file, the FILENAME-PARTS are concatenated to form the file name."
48
- (let ((filename (file-truename (mapconcat #'identity filename-parts))))
+ (let ((filename (file-truename (apply #'concat filename-parts))))
49
(if (file-exists-p filename)
50
(load filename nil (not minemacs-verbose))
51
(user-error "[MinEmacs:Error] Cannot load \"%s\", the file doesn't exists." filename))))
0 commit comments