1

Remove unnecessary check for MS-DOS system type

This commit is contained in:
Jessie Hildebrandt 2020-07-21 00:18:02 -04:00
parent 727b5ffc38
commit 5a218cde05

View File

@ -107,8 +107,7 @@
) )
;; (OS-specific) Set the default working directory. ;; (OS-specific) Set the default working directory.
(if (or (eq system-type 'windows-nt) (if (eq system-type 'windows-nt)
(eq system-type 'ms-dos))
(setq default-directory (getenv "USERPROFILE")) (setq default-directory (getenv "USERPROFILE"))
(setq default-directory "~/")) (setq default-directory "~/"))