mirror of
http://github.com/JaeUs3792/dotfiles
synced 2025-12-13 23:51:34 +09:00
8 lines
237 B
EmacsLisp
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)
|