From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Andrea Corallo Newsgroups: gmane.emacs.bugs Subject: bug#42572: 28.0.50; [native-comp] Natively compiled function signatures do not expose the original argument symbols Date: Mon, 31 Aug 2020 19:20:59 +0000 Message-ID: References: <87pn8gj96d.fsf@localhost> Mime-Version: 1.0 Content-Type: text/plain Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="3642"; mail-complaints-to="usenet@ciao.gmane.io" Cc: 42572@debbugs.gnu.org To: Ihor Radchenko Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Mon Aug 31 21:49:36 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 1kCpo8-0000q1-1x for geb-bug-gnu-emacs@m.gmane-mx.org; Mon, 31 Aug 2020 21:49:36 +0200 Original-Received: from localhost ([::1]:46212 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1kCpo6-0004b8-Vk for geb-bug-gnu-emacs@m.gmane-mx.org; Mon, 31 Aug 2020 15:49:35 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:56376) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1kCpna-0004al-Qz for bug-gnu-emacs@gnu.org; Mon, 31 Aug 2020 15:49:02 -0400 Original-Received: from debbugs.gnu.org ([209.51.188.43]:42211) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1kCpna-0007Bk-Hu for bug-gnu-emacs@gnu.org; Mon, 31 Aug 2020 15:49:02 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1kCpna-0001bV-Fw for bug-gnu-emacs@gnu.org; Mon, 31 Aug 2020 15:49:02 -0400 X-Loop: help-debbugs@gnu.org In-Reply-To: <87pn8gj96d.fsf@localhost> Resent-From: Andrea Corallo Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 31 Aug 2020 19:49:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 42572 X-GNU-PR-Package: emacs Original-Received: via spool by 42572-submit@debbugs.gnu.org id=B42572.15989033086117 (code B ref 42572); Mon, 31 Aug 2020 19:49:02 +0000 Original-Received: (at 42572) by debbugs.gnu.org; 31 Aug 2020 19:48:28 +0000 Original-Received: from localhost ([127.0.0.1]:53757 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kCpmy-0001aX-Af for submit@debbugs.gnu.org; Mon, 31 Aug 2020 15:48:27 -0400 Original-Received: from mx.sdf.org ([205.166.94.24]:54517) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1kCpMT-0000v6-Bn for 42572@debbugs.gnu.org; Mon, 31 Aug 2020 15:21:03 -0400 Original-Received: from mab (ma.sdf.org [205.166.94.33]) by mx.sdf.org (8.15.2/8.14.5) with ESMTP id 07VJKxqL021567; Mon, 31 Aug 2020 19:21:00 GMT X-Mailman-Approved-At: Mon, 31 Aug 2020 15:48:23 -0400 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:186794 Archived-At: Ihor Radchenko writes: > I have noticed that "Signature" of **some** natively compiled functions > in help buffer do not show the original arguments. > Example: > >> s-format is a natively compiled function defined in s.el. > >> Signature >> (s-format ARG1 ARG2 &optional ARG3) >> >> Documentation >> Format TEMPLATE with the function REPLACER. >> ... > > The original definition is > >> (defun s-format (template replacer &optional extra) > > This does not happen with all the functions though. > > Best, > Ihor I see what's wrong here, these apply to compiled dynamic code. I'll come with the fix. Thanks Andrea