dot-emacs
dot-emacs copied to clipboard
`'after-init-hook` question
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)