Skip to content

Commit 74f3dff

Browse files
authored
cl-case system-type do not need quote. (#207)
cl-case system-type do not need quote.
1 parent 3eeef9c commit 74f3dff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rime.el

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -365,17 +365,17 @@ Defaults to `user-emacs-directory'/rime/"
365365

366366
(defcustom rime-share-data-dir
367367
(cl-case system-type
368-
('gnu/linux
368+
(gnu/linux
369369
(cl-some (lambda (parent)
370370
(let ((dir (expand-file-name "rime-data" parent)))
371371
(when (file-directory-p dir)
372372
dir)))
373373
(if (fboundp 'xdg-data-dirs)
374374
(xdg-data-dirs)
375375
'("/usr/local/share" "/usr/share"))))
376-
('darwin
376+
(darwin
377377
"/Library/Input Methods/Squirrel.app/Contents/SharedSupport")
378-
('windows-nt
378+
(windows-nt
379379
(if (getenv "MSYSTEM_PREFIX")
380380
(concat (getenv "MSYSTEM_PREFIX") "/share/rime-data")
381381
(if (getenv "LIBRIME_ROOT")

0 commit comments

Comments
 (0)