;;; init-const.el --- constant and system stuff -*- lexical-binding: t -*- ;;; Commentary: ;;; Code: ;; 识别操作系统 (defconst *is-mac* (eq system-type 'darwin)) (defconst *is-linux* (eq system-type 'gnu/linux)) (defconst *is-windows* (or (eq system-type 'ms-dos) (eq system-type 'windows-nt))) (defconst *is-android* (if (getenv "TERMUX_VERSION") t nil)) (provide 'init-const) ;;; init-const.el ends here