branch: externals/async
commit 15bcbf6beae65d7606f0655711159ca56f050c6b
Author: Thierry Volpiatto <thierry.volpia...@gmail.com>
Commit: Thierry Volpiatto <thierry.volpia...@gmail.com>

    Use user-emacs-directory (#95)
    
    * async-bytecomp.el (async-byte-compile-log-file): Don't hardcode 
".emacs.d/".
---
 async-bytecomp.el | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/async-bytecomp.el b/async-bytecomp.el
index 2c96da0..7c113d5 100644
--- a/async-bytecomp.el
+++ b/async-bytecomp.el
@@ -51,7 +51,8 @@ the symbol `all', in this case packages are always compiled 
asynchronously."
   :group 'async
   :type '(repeat (choice symbol)))
 
-(defvar async-byte-compile-log-file "~/.emacs.d/async-bytecomp.log")
+(defvar async-byte-compile-log-file
+  (concat user-emacs-directory "async-bytecomp.log"))
 
 ;;;###autoload
 (defun async-byte-recompile-directory (directory &optional quiet)

Reply via email to