dotfiles/.config/emacs/lisp/init-const.el
2023-05-10 21:09:38 +09:00

8 lines
237 B
EmacsLisp

;;; init-const.el -*- lexical-binding: t -*-
(defconst ON-LINUX (eq system-type 'gnu/linux)
"Under Linux system")
(defconst ON-WINDOWS (memq system-type '(cygwin windows-nt ms-dos))
"Under Windows System")
(provide 'init-const)