From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED!not-for-mail From: Emanuel Berg Newsgroups: gmane.emacs.help Subject: Re: JIT Emacs parallel world Date: Fri, 26 Oct 2018 12:55:51 +0200 Message-ID: <86mur1q8nc.fsf@zoho.com> References: <86a7naart0.fsf@zoho.com> <861s8laq8t.fsf@zoho.com> <4c1a8858-e366-ccfd-b1b2-d05c2a3960da@easy-emacs.de> NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Trace: blaine.gmane.org 1540551272 7122 195.159.176.226 (26 Oct 2018 10:54:32 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Fri, 26 Oct 2018 10:54:32 +0000 (UTC) User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.4 (gnu/linux) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Oct 26 12:54:28 2018 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by blaine.gmane.org with esmtp (Exim 4.84_2) (envelope-from ) id 1gFzl6-0001kk-6u for geh-help-gnu-emacs@m.gmane.org; Fri, 26 Oct 2018 12:54:28 +0200 Original-Received: from localhost ([::1]:59485 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gFznC-0004MJ-Rj for geh-help-gnu-emacs@m.gmane.org; Fri, 26 Oct 2018 06:56:38 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:58194) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gFzmg-0004L7-MJ for help-gnu-emacs@gnu.org; Fri, 26 Oct 2018 06:56:07 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gFzmc-00053B-K2 for help-gnu-emacs@gnu.org; Fri, 26 Oct 2018 06:56:06 -0400 Original-Received: from [195.159.176.226] (port=44379 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gFzmc-00051v-Al for help-gnu-emacs@gnu.org; Fri, 26 Oct 2018 06:56:02 -0400 Original-Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1gFzkT-00013Z-QL for help-gnu-emacs@gnu.org; Fri, 26 Oct 2018 12:53:49 +0200 X-Injected-Via-Gmane: http://gmane.org/ Mail-Followup-To: help-gnu-emacs@gnu.org Original-Lines: 33 Original-X-Complaints-To: usenet@blaine.gmane.org Mail-Copies-To: never Cancel-Lock: sha1:nGhM1zVe0Y2jespKUvyNU4q+TI4= X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 195.159.176.226 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: "help-gnu-emacs" Xref: news.gmane.org gmane.emacs.help:118413 Archived-At: 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