From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 17 04:47:34 2023 Received: (at submit) by debbugs.gnu.org; 17 Nov 2023 09:47:34 +0000 Received: from localhost ([127.0.0.1]:45141 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r3vRl-0000A0-Kb for submit@debbugs.gnu.org; Fri, 17 Nov 2023 04:47:34 -0500 Received: from lists.gnu.org ([2001:470:142::17]:38330) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r3vRc-00009b-DK for submit@debbugs.gnu.org; Fri, 17 Nov 2023 04:47:31 -0500 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 1r3vRV-0005ab-EY for bug-gnu-emacs@gnu.org; Fri, 17 Nov 2023 04:47:17 -0500 Received: from mout01.posteo.de ([185.67.36.65]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1r3vRS-0006lB-F4 for bug-gnu-emacs@gnu.org; Fri, 17 Nov 2023 04:47:17 -0500 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id CFE55240027 for ; Fri, 17 Nov 2023 10:47:09 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.net; s=2017; t=1700214429; bh=VIfgTLJvcIZWKCg9SrUXLFn0FqdpeII60lhRp2UgLHY=; h=From:To:Subject:Date:Message-ID:MIME-Version:From; b=Pc2KdnnTP2mt/vEhEbL/KY2vPbGkOkOvJKU21TqeLc2dnN/fNIQSuUeA7orO8ldKn rLIa+5gBjBppt6VLKYAGgaup4qXpHFc6t5oWa4a/FN/JgtDzcC7+vqEsjxnnH+mYDM eX6/K/9WxPFIk0u1caW6FyTwV1HbYDvSSa/PSq3rYN/Ns0chb8P5GAKZ1TsmbROH2Z G/eQKBA5il4dEMw+c3nt8EChX8kjfH45oJhapgRHEA7vIb6y9B81rlfm3kCb0LXrZ0 BiXBbMHnjIl6dzk9GhyBU1mGphR8ss3tOJ0SLmIy+Gi4GLURGUFLmraIRH2rfC5R8B 1GPAXr8zSY1eg== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4SWsWJ2k4lz9rxL for ; Fri, 17 Nov 2023 10:47:08 +0100 (CET) From: Ihor Radchenko To: bug-gnu-emacs@gnu.org Subject: [PATCH] doc/lispref/debugging.texi: Add reference to Profiler docs Date: Fri, 17 Nov 2023 09:49:36 +0000 Message-ID: <87v8a0btfz.fsf@localhost> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=185.67.36.65; envelope-from=yantar92@posteo.net; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H5=0.001, RCVD_IN_MSPIKE_WL=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.0 (/) --=-=-= Content-Type: text/plain Tags: patch Hi, When reading "19 Debugging Lisp Programs" section of Elisp manual, I noticed references to "Compiler Errors" and ERT Manual, but not to profiler. It looks natural to reference Profiler documentation as well. In GNU Emacs 30.0.50 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.38, cairo version 1.18.0) of 2023-11-08 built on localhost Repository revision: 6e78234c0626fd9e187aef60672671df26a5b187 Repository branch: master Windowing system distributor 'The X.Org Foundation', version 11.0.12101009 System Description: Gentoo Linux Configured using: 'configure --with-native-compilation CFLAGS=-g3 JAVAC=/etc/java-config-2/current-system-vm/bin/javac' --=-=-= Content-Type: text/patch Content-Disposition: attachment; filename=0001-doc-lispref-debugging.texi-Add-reference-to-Profiler.patch >From 72e5fdc672d1ab5a3f3a34d488e9386abc16a4e0 Mon Sep 17 00:00:00 2001 Message-ID: <72e5fdc672d1ab5a3f3a34d488e9386abc16a4e0.1700214488.git.yantar92@posteo.net> From: Ihor Radchenko Date: Fri, 17 Nov 2023 11:47:46 +0200 Subject: [PATCH] doc/lispref/debugging.texi: Add reference to Profiler docs --- doc/lispref/debugging.texi | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/lispref/debugging.texi b/doc/lispref/debugging.texi index 169e3ac37d3..a758a0fcf5e 100644 --- a/doc/lispref/debugging.texi +++ b/doc/lispref/debugging.texi @@ -47,6 +47,7 @@ Debugging @item You can profile the program to get hints about how to make it more efficient. +@xref{Profiling}. @end itemize Other useful tools for debugging input and output problems are the -- 2.42.0 --=-=-= Content-Type: text/plain -- Ihor Radchenko // yantar92, Org mode contributor, Learn more about Org mode at . Support Org development at , or support my work at --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Fri Nov 17 07:30:09 2023 Received: (at 67236-done) by debbugs.gnu.org; 17 Nov 2023 12:30:09 +0000 Received: from localhost ([127.0.0.1]:45462 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r3xz6-0005CW-Nn for submit@debbugs.gnu.org; Fri, 17 Nov 2023 07:30:09 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:54282) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1r3xz2-0004oR-IG for 67236-done@debbugs.gnu.org; Fri, 17 Nov 2023 07:30:06 -0500 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 1r3xyw-0005pa-Br; Fri, 17 Nov 2023 07:29:58 -0500 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=kbKTjLg3uNZuzdvnW+xaRRV4CaHB5OViuvad0KfI5Ak=; b=ned23dsADwYB 6SgcwKseGXt87rkSzLugS3Ed3lE6g9+anZyp4i3tTGUcthwqkj5GRg7wW6F50Ye41s7ruq1iyIpWn djna1wPdtSkF41QCGbMzyNcxgTNsIgDbydx0l/v2lc57/We5M5WXWxYudLB10misW+gd793S25/5M aniuQ91cLVw9TVBiUdVuHXUDafIa8Cswgzma2mePYQkCDFDC6fXBREdpPnYBur0bRtPkFjsuSboBW /+X/yIJe9gVPyLeloNqA7UbYmWfG2TnUAAcaJtEGzb6h+FYRbGud+8CXqJY8gRWRPSsjFQGgp/9ro 1lCCUlhjFNzOGmDwXt6xGQ==; Date: Fri, 17 Nov 2023 14:29:51 +0200 Message-Id: <83r0koo94w.fsf@gnu.org> From: Eli Zaretskii To: Ihor Radchenko In-Reply-To: <87v8a0btfz.fsf@localhost> (message from Ihor Radchenko on Fri, 17 Nov 2023 09:49:36 +0000) Subject: Re: bug#67236: [PATCH] doc/lispref/debugging.texi: Add reference to Profiler docs References: <87v8a0btfz.fsf@localhost> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 67236-done Cc: 67236-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > From: Ihor Radchenko > Date: Fri, 17 Nov 2023 09:49:36 +0000 > > When reading "19 Debugging Lisp Programs" section of Elisp manual, I > noticed references to "Compiler Errors" and ERT Manual, but not to > profiler. It looks natural to reference Profiler documentation as well. Thanks, installed on the emacs-29 branch. But since Profiling is a section of this very chapter, why not add cross-references to the other sections of the chapter as well? So I added them. Closing. From unknown Tue Aug 19 09:31:48 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sat, 16 Dec 2023 12:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator