From debbugs-submit-bounces@debbugs.gnu.org Tue May 04 02:39:12 2021 Received: (at 47661-done) by debbugs.gnu.org; 4 May 2021 06:39:12 +0000 Received: from localhost ([127.0.0.1]:51174 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldoi1-0005Gt-Ve for submit@debbugs.gnu.org; Tue, 04 May 2021 02:39:12 -0400 Received: from mailrelay.tugraz.at ([129.27.2.202]:7447) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ldohz-0005Gn-Pd for 47661-done@debbugs.gnu.org; Tue, 04 May 2021 02:39:04 -0400 Received: from nijino.local (91-114-247-246.adsl.highway.telekom.at [91.114.247.246]) by mailrelay.tugraz.at (Postfix) with ESMTPSA id 4FZ9D42YXgz1LXt4; Tue, 4 May 2021 08:39:00 +0200 (CEST) DKIM-Filter: OpenDKIM Filter v2.11.0 mailrelay.tugraz.at 4FZ9D42YXgz1LXt4 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=tugraz.at; s=mailrelay; t=1620110340; bh=pXbINmTBEv+bdlxzsh2oZ9EuQIdckpp8kXDbwPfOVYE=; h=Subject:From:To:Date:In-Reply-To:References:From; b=UEDEG8SW7AKsBJaaE/IZO0uV8j6nSkAiG6+Lg4ppp7TIarZRhlEwMG587g+Z23gaq SD0EuuDU1J9TQYn+eguBzTZSB8qo8AIDvAYCY6ljlcN8JqIQLiBwj9U7Rer7zLrIwB 3ruG6GZzVNpOolVGsSWo/OrxKm6LIdjuQQ/bLJ9E= Message-ID: Subject: Re: bug#47661: [PATCH 00/33] Improve Emacs UX. From: Leo Prikler To: Arun Isaac , 47661-done@debbugs.gnu.org Date: Tue, 04 May 2021 08:38:59 +0200 In-Reply-To: <87h7jjm67x.fsf@systemreboot.net> References: <20210408174616.13112-1-leo.prikler@student.tugraz.at> <87v985uvz9.fsf@yoctocell.xyz> <040332f67d721597f7885e4605259b8d562d29be.camel@student.tugraz.at> <87fsz8npqe.fsf@yoctocell.xyz> <7b548f6326d2f14eff1077afa37fac7400fbbce7.camel@student.tugraz.at> <87h7jjm67x.fsf@systemreboot.net> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.34.2 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-TUG-Backscatter-control: bt4lQm5Tva3SBgCuw0EnZw X-Spam-Scanner: SpamAssassin 3.003001 X-Spam-Score-relay: -1.9 X-Scanned-By: MIMEDefang 2.74 on 129.27.10.117 X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 47661-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) Hi Arun, Am Dienstag, den 04.05.2021, 10:43 +0530 schrieb Arun Isaac: > In guix/build/emacs-build-system.scm, is the comment before %install- > dir > still consistent with your changes? It seems to describe the old > system > when all files were installed into site-lisp. > > --8<---------------cut here---------------start------------->8--- > ;;; All the packages are installed directly under site-lisp, which > means that > ;;; having that directory in the EMACSLOADPATH is enough to have them > found by > ;;; Emacs. > (define %install-dir "/share/emacs/site-lisp") > --8<---------------cut here---------------end--------------->8--- Thanks for pointing this out. How would --8<---------------cut here---------------start------------->8--- ;;; The location in which Emacs looks for packages. Emacs Lisp code, that is ;;; installed there directly will be found when that directory is added to ;;; EMACSLOADPATH. To avoid clashes between packages (particularly considering ;;; auxiliary files), we install them one directory level below, however. ;;; This indirection is handled by ‘expand-load-path’ during build and a ;;; profile hook otherwise. (define %install-dir "/share/emacs/site-lisp") --8<---------------cut here---------------end--------------->8--- sound?