Skip to content

Commit b40c488

Browse files
committed
use 'eq' for symbol comparison instead of 'equal'
1 parent 81220c6 commit b40c488

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

init-loader.el

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,14 +163,14 @@ example, 00_foo.el, 01_bar.el ... 99_keybinds.el."
163163
(init-loader-re-load init-loader-carbon-emacs-regexp init-dir)
164164
(setq is-carbon-emacs t))
165165
;; Cocoa Emacs
166-
(when (or (equal window-system 'ns)
166+
(when (or (eq window-system 'ns)
167167
(and (not is-carbon-emacs) ;; for daemon mode
168168
(not window-system)
169169
(eq system-type 'darwin)))
170170
(init-loader-re-load init-loader-cocoa-emacs-regexp init-dir))
171171

172172
;; GNU Linux
173-
(when (equal system-type 'gnu/linux)
173+
(when (eq system-type 'gnu/linux)
174174
(init-loader-re-load init-loader-linux-regexp init-dir))
175175

176176
;; no-window

0 commit comments

Comments
 (0)