From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Andrea Corallo via "Bug reports for GNU Emacs, the Swiss army knife of text editors" Newsgroups: gmane.emacs.bugs Subject: bug#44221: 28.0.50; native-compile fails on cl-lib if delete-region has around advice Date: Wed, 28 Oct 2020 14:13:31 +0000 Message-ID: References: <3B1B0B89-30E8-4D73-849E-26D35C281C8A@codefu.org> Reply-To: Andrea Corallo Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="23831"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) Cc: 44221-done@debbugs.gnu.org To: Dale Sedivec Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Wed Oct 28 15:14:19 2020 Return-path: Envelope-to: geb-bug-gnu-emacs@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 1kXmDS-00065r-UQ for geb-bug-gnu-emacs@m.gmane-mx.org; Wed, 28 Oct 2020 15:14:18 +0100 Original-Received: from localhost ([::1]:50662 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kXmDR-0006Jg-Ce for geb-bug-gnu-emacs@m.gmane-mx.org; Wed, 28 Oct 2020 10:14:17 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:57220) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kXmDD-0006Hs-U8 for bug-gnu-emacs@gnu.org; Wed, 28 Oct 2020 10:14:03 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:38447) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kXmDD-000674-Jr for bug-gnu-emacs@gnu.org; Wed, 28 Oct 2020 10:14:03 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1kXmDC-00077P-Gz for bug-gnu-emacs@gnu.org; Wed, 28 Oct 2020 10:14:02 -0400 Resent-From: Andrea Corallo Original-Sender: "Debbugs-submit" Resent-To: bug-gnu-emacs@gnu.org Resent-Date: Wed, 28 Oct 2020 14:14:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: cc-closed 44221 X-GNU-PR-Package: emacs Mail-Followup-To: 44221@debbugs.gnu.org, akrl@sdf.org, dale@codefu.org Original-Received: via spool by 44221-done@debbugs.gnu.org id=D44221.160389441627320 (code D ref 44221); Wed, 28 Oct 2020 14:14:02 +0000 Original-Received: (at 44221-done) by debbugs.gnu.org; 28 Oct 2020 14:13:36 +0000 Original-Received: from localhost ([127.0.0.1]:49993 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXmCm-00076a-31 for submit@debbugs.gnu.org; Wed, 28 Oct 2020 10:13:36 -0400 Original-Received: from mab.sdf.org ([205.166.94.33]:47192 helo=ma.sdf.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kXmCk-00076Q-42 for 44221-done@debbugs.gnu.org; Wed, 28 Oct 2020 10:13:34 -0400 Original-Received: from akrl by ma.sdf.org with local (Exim 4.92) (envelope-from ) id 1kXmCh-000117-GG; Wed, 28 Oct 2020 14:13:31 +0000 In-Reply-To: (Dale Sedivec's message of "Tue, 27 Oct 2020 15:28:12 -0500") X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: "bug-gnu-emacs" Xref: news.gmane.io gmane.emacs.bugs:191875 Archived-At: Dale Sedivec writes: > On Oct 26, 2020, at 11:42, Andrea Corallo wrote: >> Dale Sedivec writes: > [...] >>> 4. Attempt native compilation of cl-lib: >>> >>> (require 'find-func) >>> (native-compile (find-library-name "cl-lib")) >>> >>> Expected result: cl-lib experiences native compilation >>> >>> Actual result: >>> >>> *** Eval error *** Internal native compiler error: >>> "/Users/dale/Applications/Emacs.app/Contents/Resources/lisp/emacs-lisp/cl-lib.el.gz", >>> "not a subr", #[128 "\300\301\302#\207" [apply >>> delete-region@my:test # nil] 5 nil "r"] >>> >>> I discovered this via the volatile-highlights package, which advises >>> `delete-region', among other things. >> >> Hi Dale, >> >> thanks for reporting this, fd9e9308d2 should fix the issue. >> >> Please confirm works for you with your package. >> >> Thanks! > > Thank you! I *think* this is now fixed, as I don't get this error > anymore. Attempting to natively compile cl-lib now gives me a > different error that looks unrelated, which I'll have to do some more > research on. Hi Dale, great I'm closing this then. FWIW I can native compile cl-lib both syncronously and asyncronously with no errors. Please file a bug for that with a reproducer if you feel. Thanks Andrea