dot-emacs icon indicating copy to clipboard operation
dot-emacs copied to clipboard

`'after-init-hook` question

Open rajivr opened this issue 5 years ago • 0 comments
trafficstars

Hi John, I was wondering if there was some reason for quasi-quoting the function that is passed to 'after-init-hook in init.el?

(add-hook 'after-init-hook
          `(lambda ()
             (setq file-name-handler-alist file-name-handler-alist-old
                   gc-cons-threshold 800000
                   gc-cons-percentage 0.1)
             (garbage-collect)) t)

rajivr avatar Aug 28 '20 02:08 rajivr