GNU bug report logs - #48221
28.0.50; defsubsts aren't native compiled?

Previous Next

Package: emacs;

Reported by: Lars Ingebrigtsen <larsi <at> gnus.org>

Date: Tue, 4 May 2021 10:00:01 UTC

Severity: normal

Tags: fixed

Found in version 28.0.50

Fixed in version 28.1

Done: Lars Ingebrigtsen <larsi <at> gnus.org>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 48221 in the body.
You can then email your comments to 48221 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Tue, 04 May 2021 10:00:01 GMT) Full text and rfc822 format available.

Acknowledgement sent to Lars Ingebrigtsen <larsi <at> gnus.org>:
New bug report received and forwarded. Copy sent to bug-gnu-emacs <at> gnu.org. (Tue, 04 May 2021 10:00:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: bug-gnu-emacs <at> gnu.org
Cc: Andrea Corallo <akrl <at> sdf.org>
Subject: 28.0.50; defsubsts aren't native compiled?
Date: Tue, 04 May 2021 11:59:36 +0200
The following test has been failing the past few days.

1 unexpected results:
   FAILED  help-fns-test-lisp-defsubst

And, indeed, `C-h f' on the subst in question says:

posn-window is a compiled Lisp function in ‘subr.el’.

While a regular function is native compiled:

last is a native compiled Lisp function in ‘subr.el’.



In GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.24, cairo version 1.16.0)
 of 2021-04-30 built on xo
Repository revision: 7c901d90e620b4d3651b86c13faf1e81eeb3db10
Repository branch: master
Windowing system distributor 'The X.Org Foundation', version 11.0.12010000
System Description: Debian GNU/Linux bullseye/sid


-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Tue, 04 May 2021 16:04:01 GMT) Full text and rfc822 format available.

Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Andrea Corallo <akrl <at> sdf.org>
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: bug-gnu-emacs <at> gnu.org
Subject: Re: 28.0.50; defsubsts aren't native compiled?
Date: Tue, 04 May 2021 16:03:34 +0000
Lars Ingebrigtsen <larsi <at> gnus.org> writes:

> The following test has been failing the past few days.
>
> 1 unexpected results:
>    FAILED  help-fns-test-lisp-defsubst
>
> And, indeed, `C-h f' on the subst in question says:
>
> posn-window is a compiled Lisp function in ‘subr.el’.
>
> While a regular function is native compiled:
>
> last is a native compiled Lisp function in ‘subr.el’.

Hi Lars,

AFAIR having the defsubst non native compiled is what we want as we need
the bytecode definition to have the inline to be performed.  Actually
the test is verifying that the defsubst is *not* native compiled.

I tried to reproduce here (0c993ed1d3) but for me the test is passing,
that's odd...

Thanks

  Andrea




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 09:37:01 GMT) Full text and rfc822 format available.

Message #11 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Andrea Corallo <akrl <at> sdf.org>
Cc: 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 11:36:02 +0200
Andrea Corallo <akrl <at> sdf.org> writes:

> AFAIR having the defsubst non native compiled is what we want as we need
> the bytecode definition to have the inline to be performed.  Actually
> the test is verifying that the defsubst is *not* native compiled.
>
> I tried to reproduce here (0c993ed1d3) but for me the test is passing,
> that's odd...

Hm, odd.  The two tests here are:

----
(ert-deftest help-fns-test-lisp-defun ()
  (let ((regexp (if (boundp 'comp-ctxt)
                    "a native compiled Lisp function in .+subr\\.el"
                  "a compiled Lisp function in .+subr\\.el"))
        (result (help-fns-tests--describe-function 'last)))
    (should (string-match regexp result))))

(ert-deftest help-fns-test-lisp-defsubst ()
  (let ((regexp (if (boundp 'comp-ctxt)
                    "a native compiled Lisp function in .+subr\\.el"
                  "a compiled Lisp function in .+subr\\.el"))
        (result (help-fns-tests--describe-function 'posn-window)))
    (should (string-match regexp result))))
----

Unless I'm really misreading something here, they both seem to expect
the native-compiled results?

(A related question -- is (boundp 'comp-ctxt) really the best way to
test for whether we have a native-compiled Emacs?  That's just a defvar
in comp-cstr.el...)

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 14:59:01 GMT) Full text and rfc822 format available.

Message #14 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: 48221 <at> debbugs.gnu.org, akrl <at> sdf.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 17:57:44 +0300
> From: Lars Ingebrigtsen <larsi <at> gnus.org>
> Date: Wed, 05 May 2021 11:36:02 +0200
> Cc: 48221 <at> debbugs.gnu.org
> 
> (A related question -- is (boundp 'comp-ctxt) really the best way to
> test for whether we have a native-compiled Emacs?  That's just a defvar
> in comp-cstr.el...)

We could perhaps provide 'native-compilation in comp.c?  WDYT?




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 15:00:02 GMT) Full text and rfc822 format available.

Message #17 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Andrea Corallo <akrl <at> sdf.org>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: Lars Ingebrigtsen <larsi <at> gnus.org>, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 14:59:44 +0000
Eli Zaretskii <eliz <at> gnu.org> writes:

>> From: Lars Ingebrigtsen <larsi <at> gnus.org>
>> Date: Wed, 05 May 2021 11:36:02 +0200
>> Cc: 48221 <at> debbugs.gnu.org
>> 
>> (A related question -- is (boundp 'comp-ctxt) really the best way to
>> test for whether we have a native-compiled Emacs?  That's just a defvar
>> in comp-cstr.el...)
>
> We could perhaps provide 'native-compilation in comp.c?  WDYT?

We can use since a while (featurep 'nativecomp), I probably missed this
substitution, I'm preparing a patch.

  Andrea




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 15:01:02 GMT) Full text and rfc822 format available.

Message #20 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: 48221 <at> debbugs.gnu.org, akrl <at> sdf.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 17:00:17 +0200
Eli Zaretskii <eliz <at> gnu.org> writes:

> We could perhaps provide 'native-compilation in comp.c?  WDYT?

Yes, good idea.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 15:04:01 GMT) Full text and rfc822 format available.

Message #23 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Andrea Corallo <akrl <at> sdf.org>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: Lars Ingebrigtsen <larsi <at> gnus.org>, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 15:03:02 +0000
Andrea Corallo via "Bug reports for GNU Emacs, the Swiss army knife of
text editors" <bug-gnu-emacs <at> gnu.org> writes:

> Eli Zaretskii <eliz <at> gnu.org> writes:
>
>>> From: Lars Ingebrigtsen <larsi <at> gnus.org>
>>> Date: Wed, 05 May 2021 11:36:02 +0200
>>> Cc: 48221 <at> debbugs.gnu.org
>>> 
>>> (A related question -- is (boundp 'comp-ctxt) really the best way to
>>> test for whether we have a native-compiled Emacs?  That's just a defvar
>>> in comp-cstr.el...)
>>
>> We could perhaps provide 'native-compilation in comp.c?  WDYT?
>
> We can use since a while (featurep 'nativecomp), I probably missed this
> substitution, I'm preparing a patch.

3481903d13

  Andrea




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 15:12:01 GMT) Full text and rfc822 format available.

Message #26 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Andrea Corallo <akrl <at> sdf.org>
Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 18:10:58 +0300
> From: Andrea Corallo <akrl <at> sdf.org>
> Cc: Lars Ingebrigtsen <larsi <at> gnus.org>, 48221 <at> debbugs.gnu.org
> Date: Wed, 05 May 2021 15:03:02 +0000
> 
> >> We could perhaps provide 'native-compilation in comp.c?  WDYT?
> >
> > We can use since a while (featurep 'nativecomp), I probably missed this
> > substitution, I'm preparing a patch.
> 
> 3481903d13

Thanks.  I think the feature should be renamed to native-comp, like
the other variables we talked about.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 15:15:01 GMT) Full text and rfc822 format available.

Message #29 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: akrl <at> sdf.org
Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 18:13:48 +0300
> Date: Wed, 05 May 2021 18:10:58 +0300
> From: Eli Zaretskii <eliz <at> gnu.org>
> Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
> 
> Thanks.  I think the feature should be renamed to native-comp

Sorry, I meant native-compile.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 15:17:01 GMT) Full text and rfc822 format available.

Message #32 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Andrea Corallo <akrl <at> sdf.org>
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 15:15:58 +0000
Lars Ingebrigtsen <larsi <at> gnus.org> writes:

> Andrea Corallo <akrl <at> sdf.org> writes:
>
>> AFAIR having the defsubst non native compiled is what we want as we need
>> the bytecode definition to have the inline to be performed.  Actually
>> the test is verifying that the defsubst is *not* native compiled.
>>
>> I tried to reproduce here (0c993ed1d3) but for me the test is passing,
>> that's odd...
>
> Hm, odd.  The two tests here are:

Sorry, dunno why I was convinced your were talking about
`comp-test-defsubst' :/

31f64d862b fixes `help-fns-test-lisp-defsubst'.

Thanks

  Andrea




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 15:22:02 GMT) Full text and rfc822 format available.

Message #35 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Andrea Corallo <akrl <at> sdf.org>
Cc: 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 17:21:49 +0200
Andrea Corallo <akrl <at> sdf.org> writes:

> Sorry, dunno why I was convinced your were talking about
> `comp-test-defsubst' :/
>
> 31f64d862b fixes `help-fns-test-lisp-defsubst'.

Thanks; that fixes the problem here, too.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Added tag(s) fixed. Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Wed, 05 May 2021 15:23:01 GMT) Full text and rfc822 format available.

bug marked as fixed in version 28.1, send any further explanations to 48221 <at> debbugs.gnu.org and Lars Ingebrigtsen <larsi <at> gnus.org> Request was from Lars Ingebrigtsen <larsi <at> gnus.org> to control <at> debbugs.gnu.org. (Wed, 05 May 2021 15:23:01 GMT) Full text and rfc822 format available.

Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 15:25:01 GMT) Full text and rfc822 format available.

Message #42 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Andrea Corallo <akrl <at> sdf.org>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 15:23:47 +0000
Eli Zaretskii <eliz <at> gnu.org> writes:

>> Date: Wed, 05 May 2021 18:10:58 +0300
>> From: Eli Zaretskii <eliz <at> gnu.org>
>> Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
>> 
>> Thanks.  I think the feature should be renamed to native-comp
>
> Sorry, I meant native-compile.

NP, BTW in the configure we use `native-compilation' shouldn't we use
this?

Thanks

  Andrea




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 15:33:02 GMT) Full text and rfc822 format available.

Message #45 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Lars Ingebrigtsen <larsi <at> gnus.org>
To: Andrea Corallo <akrl <at> sdf.org>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 17:31:58 +0200
Andrea Corallo <akrl <at> sdf.org> writes:

>>> Thanks.  I think the feature should be renamed to native-comp
>>
>> Sorry, I meant native-compile.
>
> NP, BTW in the configure we use `native-compilation' shouldn't we use
> this?

"native-compilation" is a handful...  would it make sense to change that
to "--with-native-compile" instead?  (I don't really have an opinion
here, though.)

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 15:47:02 GMT) Full text and rfc822 format available.

Message #48 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Andrea Corallo <akrl <at> sdf.org>
To: Lars Ingebrigtsen <larsi <at> gnus.org>
Cc: Eli Zaretskii <eliz <at> gnu.org>, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 15:46:02 +0000
Lars Ingebrigtsen <larsi <at> gnus.org> writes:

> Andrea Corallo <akrl <at> sdf.org> writes:
>
>>>> Thanks.  I think the feature should be renamed to native-comp
>>>
>>> Sorry, I meant native-compile.
>>
>> NP, BTW in the configure we use `native-compilation' shouldn't we use
>> this?
>
> "native-compilation" is a handful...  would it make sense to change that
> to "--with-native-compile" instead?  (I don't really have an opinion
> here, though.)

FWIW I've really no preference here, I was asked for
"--with-native-compilation", as long as we decide something it's all
good by me.

  Andrea




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 16:09:02 GMT) Full text and rfc822 format available.

Message #51 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Andrea Corallo <akrl <at> sdf.org>
Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 19:08:04 +0300
> From: Andrea Corallo <akrl <at> sdf.org>
> Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
> Date: Wed, 05 May 2021 15:23:47 +0000
> 
> Eli Zaretskii <eliz <at> gnu.org> writes:
> 
> >> Date: Wed, 05 May 2021 18:10:58 +0300
> >> From: Eli Zaretskii <eliz <at> gnu.org>
> >> Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
> >> 
> >> Thanks.  I think the feature should be renamed to native-comp
> >
> > Sorry, I meant native-compile.
> 
> NP, BTW in the configure we use `native-compilation' shouldn't we use
> this?

I thought native-compile was better because we talked about renaming a
bunch of variables to have that prefix, so it would be consistent.




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 16:10:02 GMT) Full text and rfc822 format available.

Message #54 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Andrea Corallo <akrl <at> sdf.org>
Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 19:09:39 +0300
> From: Andrea Corallo <akrl <at> sdf.org>
> Cc: Eli Zaretskii <eliz <at> gnu.org>, 48221 <at> debbugs.gnu.org
> Date: Wed, 05 May 2021 15:46:02 +0000
> 
> > "native-compilation" is a handful...  would it make sense to change that
> > to "--with-native-compile" instead?  (I don't really have an opinion
> > here, though.)
> 
> FWIW I've really no preference here, I was asked for
> "--with-native-compilation", as long as we decide something it's all
> good by me.

I'm not sure it is worth our while to make small changes in this name,
since I believe we will want to release Emacs 28.1 with that option
being the default (if libgccjit is available).




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Wed, 05 May 2021 20:34:02 GMT) Full text and rfc822 format available.

Message #57 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Andrea Corallo <akrl <at> sdf.org>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Wed, 05 May 2021 20:33:49 +0000
Eli Zaretskii <eliz <at> gnu.org> writes:

>> From: Andrea Corallo <akrl <at> sdf.org>
>> Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
>> Date: Wed, 05 May 2021 15:23:47 +0000
>> 
>> Eli Zaretskii <eliz <at> gnu.org> writes:
>> 
>> >> Date: Wed, 05 May 2021 18:10:58 +0300
>> >> From: Eli Zaretskii <eliz <at> gnu.org>
>> >> Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
>> >> 
>> >> Thanks.  I think the feature should be renamed to native-comp
>> >
>> > Sorry, I meant native-compile.
>> 
>> NP, BTW in the configure we use `native-compilation' shouldn't we use
>> this?
>
> I thought native-compile was better because we talked about renaming a
> bunch of variables to have that prefix, so it would be consistent.

Okay, I've the impression we all agreed on native-compile for the
feature name so I did the renaming with 40736357b8.  The configure flag
in any case is a different subject.

Thanks

  Andrea




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Thu, 06 May 2021 04:51:01 GMT) Full text and rfc822 format available.

Message #60 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Andrea Corallo <akrl <at> sdf.org>
Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Thu, 06 May 2021 07:49:58 +0300
> From: Andrea Corallo <akrl <at> sdf.org>
> Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
> Date: Wed, 05 May 2021 20:33:49 +0000
> 
> Okay, I've the impression we all agreed on native-compile for the
> feature name so I did the renaming with 40736357b8.

Thanks.

Btw, I'm waiting for the other renames to begin updating the
documentation.  I hope it will happen soon, okay?




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Thu, 06 May 2021 08:00:02 GMT) Full text and rfc822 format available.

Message #63 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Andrea Corallo <akrl <at> sdf.org>
To: Eli Zaretskii <eliz <at> gnu.org>
Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Thu, 06 May 2021 07:59:50 +0000
Eli Zaretskii <eliz <at> gnu.org> writes:

>> From: Andrea Corallo <akrl <at> sdf.org>
>> Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
>> Date: Wed, 05 May 2021 20:33:49 +0000
>> 
>> Okay, I've the impression we all agreed on native-compile for the
>> feature name so I did the renaming with 40736357b8.
>
> Thanks.
>
> Btw, I'm waiting for the other renames to begin updating the
> documentation.  I hope it will happen soon, okay?

Sure, I've already started this, I'll be pushing commits today.

Regards

  Andrea




Information forwarded to bug-gnu-emacs <at> gnu.org:
bug#48221; Package emacs. (Thu, 06 May 2021 08:10:02 GMT) Full text and rfc822 format available.

Message #66 received at 48221 <at> debbugs.gnu.org (full text, mbox):

From: Eli Zaretskii <eliz <at> gnu.org>
To: Andrea Corallo <akrl <at> sdf.org>
Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
Subject: Re: bug#48221: 28.0.50; defsubsts aren't native compiled?
Date: Thu, 06 May 2021 11:09:07 +0300
> From: Andrea Corallo <akrl <at> sdf.org>
> Cc: larsi <at> gnus.org, 48221 <at> debbugs.gnu.org
> Date: Thu, 06 May 2021 07:59:50 +0000
> 
> > Btw, I'm waiting for the other renames to begin updating the
> > documentation.  I hope it will happen soon, okay?
> 
> Sure, I've already started this, I'll be pushing commits today.

Great, that will pave the way for adding the necessary documentation
to the manuals.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Thu, 03 Jun 2021 11:24:05 GMT) Full text and rfc822 format available.

This bug report was last modified 2 years and 328 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.