Do not capture the build-time value of $PATH in the 'emacs' executable since this can noticeably increase the size of the closure of Emacs with things like GCC being referenced. --- a/lisp/loadup.el +++ b/lisp/loadup.el @@ -64,6 +64,11 @@ (expand-file-name "textmodes" dir) (expand-file-name "vc" dir))))) +;; Reset 'exec-path' so we don't capture the build-time $PATH in the +;; 'emacs' executable. +(setq-default exec-path nil) +(setq exec-path nil) + (if (eq t purify-flag) ;; Hash consing saved around 11% of pure space in my tests. (setq purify-flag (make-hash-table :test 'equal :size 70000))) name='id' value='6d51ebf63b505cd25d3ad95017c9b6d3162db148'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/uucp.scm
AgeCommit message (Expand)Author
2021-12-13gnu: Simplify package inputs....This commit was obtained by running: ./pre-inst-env guix style without any additional argument. Ludovic Courtès
2021-08-04gnu: Add nncp....* gnu/packages/uucp.scm (nncp): New variable. Arun Isaac