Skip to content

Commit

Permalink
Updates required emacs version on init.el
Browse files Browse the repository at this point in the history
  • Loading branch information
heimojuh committed Aug 13, 2015
1 parent 15e5553 commit e524a71
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions init.el
Expand Up @@ -77,7 +77,7 @@

(setq live-supported-emacsp t)

(when (version< emacs-version "24.3")
(when (version< emacs-version "24.4")
(setq live-supported-emacsp nil)
(setq initial-scratch-message (concat "
;; _.-^^---....,,--
Expand All @@ -92,7 +92,7 @@
;; | ; :|
;; _____.,-#%&$@%#&#~,._____
;;
;; I'm sorry, Emacs Live is only supported on Emacs 24.3+.
;; I'm sorry, Emacs Live is only supported on Emacs 24.4+.
;;
;; You are running: " emacs-version "
;;
Expand All @@ -110,7 +110,7 @@
(let* ((old-file (concat (file-name-as-directory "~") ".emacs-old.el")))
(if (file-exists-p old-file)
(load-file old-file)
(error (concat "Oops - your emacs isn't supported. Emacs Live only works on Emacs 24.3+ and you're running version: " emacs-version ". Please upgrade your Emacs and try again, or define ~/.emacs-old.el for a fallback")))))
(error (concat "Oops - your emacs isn't supported. Emacs Live only works on Emacs 24.4+ and you're running version: " emacs-version ". Please upgrade your Emacs and try again, or define ~/.emacs-old.el for a fallback")))))

(let ((emacs-live-directory (getenv "EMACS_LIVE_DIR")))
(when emacs-live-directory
Expand Down

0 comments on commit e524a71

Please sign in to comment.