[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: JIT Emacs parallel world
From: |
Emanuel Berg |
Subject: |
Re: JIT Emacs parallel world |
Date: |
Fri, 26 Oct 2018 12:55:51 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) |
Andreas Röhler wrote:
> I'm using .emacs only to dispatch
>
> (cond
> ((string-match "^23" emacs-version)
> (load (expand-file-name "~/.gnu-emacs23-all-cvs"))
> (setq custom-file (expand-file-name "~/.gnu-emacs23-cvs-custom")))
> ((string-match "^24" emacs-version)
> (load (expand-file-name "~/.gnu-emacs24"))
> (setq custom-file (expand-file-name "~/.gnu-emacs24-custom")))
> ((string-match "^25" emacs-version)
> (load (expand-file-name "~/.gnu-emacs25"))
> (setq custom-file (expand-file-name "~/.gnu-emacs25-custom")))
> ((string-match "^26" emacs-version)
> (load (expand-file-name "~/.gnu-emacs25"))
> (setq custom-file (expand-file-name "~/.gnu-emacs25-custom")))
> ((string-match "^27" emacs-version)
> (load (expand-file-name "~/.gnu-emacs25"))
> (setq custom-file (expand-file-name "~/.gnu-emacs25-custom"))
> ))
>
> With emacs.d, that's another thing. De facto
> often loading from git-repos setting load-path
> and require, not from package-manager.
With emacs.d for me, mostly it contains Elisp
that are loaded explicitely from .emacs.
So I don't see why this wouldn't work for me!
--
underground experts united
http://user.it.uu.se/~embe8573
- JIT Emacs parallel world, Emanuel Berg, 2018/10/19
- Re: JIT Emacs parallel world, Phillip Lord, 2018/10/20
- Re: JIT Emacs parallel world, Emanuel Berg, 2018/10/20
- Re: JIT Emacs parallel world, Phillip Lord, 2018/10/20
- Re: JIT Emacs parallel world, Emanuel Berg, 2018/10/20
- Re: JIT Emacs parallel world, Emanuel Berg, 2018/10/24
- Re: JIT Emacs parallel world, Richard Melville, 2018/10/25
- Re: JIT Emacs parallel world, Emanuel Berg, 2018/10/25
- Re: JIT Emacs parallel world, Tomas Nordin, 2018/10/25
- Re: JIT Emacs parallel world, Andreas Röhler, 2018/10/26
- Re: JIT Emacs parallel world,
Emanuel Berg <=