diff options
author | Andrea Corallo <akrl@sdf.org> | 2020-03-13 22:16:21 +0000 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-03-13 22:21:08 +0000 |
commit | 144e8f64b69e01a6c870574d04c92368f0056dd0 (patch) | |
tree | 80b5d874dd7da11a364f134e14940eaac71422e2 /lisp/emacs-lisp/comp.el | |
parent | ab8fed0a96a55107895e6105e7b0e4b6735156d7 (diff) | |
download | emacs-144e8f64b69e01a6c870574d04c92368f0056dd0.tar.gz emacs-144e8f64b69e01a6c870574d04c92368f0056dd0.tar.bz2 emacs-144e8f64b69e01a6c870574d04c92368f0056dd0.zip |
Prefix native compilation folders with "eln-"
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 64eb46cc38d..0779373667d 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -2126,6 +2126,7 @@ Return the compilation unit file name." (if (symbolp input) (make-temp-file (concat (symbol-name input) "-")) (let ((exp-file (expand-file-name input))) + (cl-assert comp-native-path-postfix) (concat (file-name-as-directory (concat |