diff options
| -rw-r--r-- | .travis.yml | 3 | ||||
| -rw-r--r-- | emacs/README.org | 2 | ||||
| -rw-r--r-- | emacs/init.org | 4 |
3 files changed, 5 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 9b0d000..aef57f7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,10 +18,9 @@ before_install: - evm install $EVM_EMACS --use --skip env: - - EVM_EMACS=emacs-24.4-travis - - EVM_EMACS=emacs-24.5-travis - EVM_EMACS=emacs-25.1-travis - EVM_EMACS=emacs-25.2-travis + - EVM_EMACS=emacs-25.3-travis - EVM_EMACS=emacs-26.1-travis - EVM_EMACS=emacs-git-snapshot-travis diff --git a/emacs/README.org b/emacs/README.org index baac658..517908a 100644 --- a/emacs/README.org +++ b/emacs/README.org @@ -17,6 +17,8 @@ instructs =emacsclient= to spawn a new server if there isn't one already. This means that the first time around it will take some time, but in the next time everything will be alright. +=Supported versions=: GNU Emacs 25.x and 26.x. + * Dependencies First of all, install the [[https://github.com/mssola/soria][soria]] color theme. This should already be handled by diff --git a/emacs/init.org b/emacs/init.org index 647cf3d..a89e090 100644 --- a/emacs/init.org +++ b/emacs/init.org @@ -68,8 +68,8 @@ are some exceptions to this (e.g. webkit support), but these cases are individually handled. #+BEGIN_SRC elisp - (unless (>= emacs-major-version 24) - (error "Don't be a cheap bastard and upgrade to at least GNU Emacs 24")) + (unless (>= emacs-major-version 25) + (error "Don't be a cheap bastard and upgrade to at least GNU Emacs 25")) #+END_SRC Temporarily reduce garbage collection so startup time is lower. Idea taken from |
