From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: On elisp running native Date: Sat, 04 Jan 2020 23:51:00 -0500 Message-ID: References: <83tv5mp48l.fsf@gnu.org> <83sgl0lchm.fsf@gnu.org> <83imlwl9vm.fsf@gnu.org> <64F44455-7D32-4979-8204-B95768C7A767@traduction-libre.org> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="134788"; mail-complaints-to="usenet@blaine.gmane.org" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) Cc: "emacs-devel@gnu.org" To: Jean-Christophe Helary Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Sun Jan 05 05:51:24 2020 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([209.51.188.17]) by blaine.gmane.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1inxsl-000YqZ-M7 for ged-emacs-devel@m.gmane.org; Sun, 05 Jan 2020 05:51:20 +0100 Original-Received: from localhost ([::1]:39154 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1inxsj-00062V-VT for ged-emacs-devel@m.gmane.org; Sat, 04 Jan 2020 23:51:17 -0500 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:58124) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1inxsb-00062D-Nx for emacs-devel@gnu.org; Sat, 04 Jan 2020 23:51:11 -0500 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1inxsY-00079z-Tj for emacs-devel@gnu.org; Sat, 04 Jan 2020 23:51:08 -0500 Original-Received: from mailscanner.iro.umontreal.ca ([132.204.25.50]:15093) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1inxsX-00077T-Ve for emacs-devel@gnu.org; Sat, 04 Jan 2020 23:51:06 -0500 Original-Received: from pmg3.iro.umontreal.ca (localhost [127.0.0.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id BFA8744D9ED; Sat, 4 Jan 2020 23:51:04 -0500 (EST) Original-Received: from mail01.iro.umontreal.ca (unknown [172.31.2.1]) by pmg3.iro.umontreal.ca (Proxmox) with ESMTP id C6F7044D8BF; Sat, 4 Jan 2020 23:51:01 -0500 (EST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=iro.umontreal.ca; s=mail; t=1578199861; bh=oNuBJOyvg/vQgqCKOAc8sIpLAXTHmGUFWl1LJ0kO+kw=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=JnF8wwj+U0gAJGBUMvwHQpd5BLzekUyQHAF++fow82a7kK4ihl7QaIHZX22H8Wrxu oKiTuHGcQxQZv6H9jSvVlO+uVbxeLEJlQ0m1Cv18Gju5mxeqvEJZOpLB99TdXpMBxe 8HEHYoWZocbx+9dNIg+svjQ7NeJCsEg+yipNjDpUmf2eKpAZMKrpjxKWyyT2QQ6O9P lvG9ebQGx0QfqXyBm+xC1bfGtJhNDrPiaZGNLsIwm523cWvlVDGRTMlgsGi3gOzGvy NA4g/oAkzqsz5M38VadasJgHvIZ93WQcEHKbES7o1IfJS66sreC2SScA72IsEwxabx 6od/X+Kr1SxWA== Original-Received: from alfajor (65-110-220-116.cpe.pppoe.ca [65.110.220.116]) by mail01.iro.umontreal.ca (Postfix) with ESMTPSA id 85F27120835; Sat, 4 Jan 2020 23:51:01 -0500 (EST) In-Reply-To: <64F44455-7D32-4979-8204-B95768C7A767@traduction-libre.org> (Jean-Christophe Helary's message of "Sun, 5 Jan 2020 10:33:09 +0900") X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 132.204.25.50 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 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.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.org gmane.emacs.devel:243961 Archived-At: > Can't it be enforced that they are all in one given encoding ? You can (setq load-source-file-function nil) and then all .el files will be blindly treated as utf-8 (and loaded faster). It'll work right with all .el files bundled with Emacs (and all those in GNU ELPA as well, IIRC). Stefan