Browse Source

Merge pull request #366 from shanmuha/master

Username fix for windows-nt
custom
Bozhidar Batsov 13 years ago
parent
commit
c4d96549a4
  1. 4
      init.el

4
init.el

@ -33,7 +33,9 @@
;;; Code:
(message "Prelude is powering up... Be patient, Master %s!" (getenv "USER"))
(message "Prelude is powering up... Be patient, Master %s!"
(getenv
(if (equal system-type 'windows-nt) "USERNAME" "USER")))
(defvar prelude-dir (file-name-directory load-file-name)
"The root dir of the Emacs Prelude distribution.")

Loading…
Cancel
Save