From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Eli Zaretskii Newsgroups: gmane.emacs.devel Subject: Re: Question about loading libraries Date: Wed, 09 Oct 2024 15:26:26 +0300 Message-ID: <86h69l4g3x.fsf@gnu.org> References: Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="32452"; mail-complaints-to="usenet@ciao.gmane.io" Cc: emacs-devel@gnu.org To: Michelangelo Rodriguez Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Wed Oct 09 14:27:25 2024 Return-path: Envelope-to: ged-emacs-devel@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1syVmn-0008Im-Ft for ged-emacs-devel@m.gmane-mx.org; Wed, 09 Oct 2024 14:27:25 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1syVly-0007qN-JG; Wed, 09 Oct 2024 08:26:34 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1syVls-0007pw-Fz for emacs-devel@gnu.org; Wed, 09 Oct 2024 08:26:28 -0400 Original-Received: from fencepost.gnu.org ([2001:470:142:3::e]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1syVls-0003jm-56; Wed, 09 Oct 2024 08:26:28 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=References:Subject:In-Reply-To:To:From:Date: mime-version; bh=bVlL4m9MtsNdzKvhvRZtzdmpcGHfYE+671+/mHy7OJI=; b=Mu7XFBfnSmah XYfKW4JJQYKDi0/9UHK0UBMGqcejtwMOmqSjwyrtBQXohkAVPFrPh5GHX3c4XEfWkdjwwyiDCf+Ee rthwvgm94HUNYvLr9jf+PdPZVaLlUBrV42D/dFwia2nnRbboi59J93cFMM2g2C+snHYVAXw5Vv8LA jO/27UDxzW5HoEdRsMbdW6PDCGSmYTy/WhYKABma0DViyrL/KEX9+kSomymVl7CFR+UM1waT+Qstg /q1/cYlArXh+Kf/A3dFOLJ+mwGCRm6qEN6vW3MAjDOBZb4JRJLb+SC6KzcfXZy6IWM+SH+EUfxgoB zG3k/DnjRumrEThORB4OAQ==; In-Reply-To: (message from Michelangelo Rodriguez on Wed, 09 Oct 2024 02:36:52 +0200) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.devel:324436 Archived-At: > From: Michelangelo Rodriguez > Date: Wed, 09 Oct 2024 02:36:52 +0200 > > There is a way to load source files by default instead of compiled at > startup? > The problem i have is that i have an error during the initialization, > but the backtrace shows compiled functions that at the moment are > meaningless for me when i try to fix the error. Specify the .el extension explicitly. Like this: (load "foo.el")