Emacs 31 will warn when loading an Elisp file that does not specify whether to use lexical binding. We don’t use dynamic binding in these files, so we may as well switch it on now. While we’re here, keep `checkdoc` happy.
13 lines
383 B
EmacsLisp
13 lines
383 B
EmacsLisp
;;; default.el --- loaded after ".emacs" on startup -*- lexical-binding: t -*-
|
|
|
|
;;; Commentary:
|
|
;;
|
|
;; Setting `inhibit-default-init' non-nil in "~/.emacs"
|
|
;; prevents loading of this file. Also the "-q" option to "emacs"
|
|
;; prevents both "~/.emacs" and this file from being loaded at startup.
|
|
|
|
;;; Code:
|
|
|
|
(setq-default smime-CA-directory "/etc/ssl/certs")
|
|
|
|
;;; default.el ends here
|