Config: add lexical-binding: t to all files.

This commit is contained in:
User
2026-03-30 12:35:53 +08:00
parent 8e0d0a7551
commit 9499ebd704
13 changed files with 91 additions and 25 deletions

View File

@@ -1,5 +1,8 @@
;;; init-const.el
;;; -*- lexical-binding: t -*-
;;; init-const.el --- constant and system stuff -*- lexical-binding: t -*-
;;; Commentary:
;;; Code:
;; 识别操作系统
(defconst *is-mac* (eq system-type 'darwin))
@@ -33,3 +36,5 @@
(setq w32-system-coding-system 'utf-8))
(provide 'init-const)
;;; init-const.el ends here