From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 25 02:38:52 2023 Received: (at submit) by debbugs.gnu.org; 25 Jun 2023 06:38:52 +0000 Received: from localhost ([127.0.0.1]:41952 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qDJOe-0002A3-69 for submit@debbugs.gnu.org; Sun, 25 Jun 2023 02:38:52 -0400 Received: from lists.gnu.org ([209.51.188.17]:54104) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qDJOa-00029q-FV for submit@debbugs.gnu.org; Sun, 25 Jun 2023 02:38:50 -0400 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 1qDJOY-0006pY-8y for bug-gnu-emacs@gnu.org; Sun, 25 Jun 2023 02:38:46 -0400 Received: from mail.eshelyaron.com ([107.175.124.16] helo=eshelyaron.com) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qDJOW-00072P-PU for bug-gnu-emacs@gnu.org; Sun, 25 Jun 2023 02:38:45 -0400 From: Eshel Yaron DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=eshelyaron.com; s=mail; t=1687675123; bh=+eGN7A2BcKSUPwugyu5+JbR20MCSGWsTnHp9CcRZDns=; h=From:To:Subject:Date:From; b=simnlI6uociRlDEVEZw5Q6Tii9YSgj0QIq9xm0YE0d5aEfUoPQkGVtHphNrQxDPec +upDjfYaBt5+FRF9CRjY2WiJqDzVVTuxEqSYGi9Vhn7TaeZiFUU20yejKYdTYCEimA sWlLU6mmxjYpyyMwGtDdw2K+6nN5v6+xFf73QmLib8MzV/ki9bUqDV+9JiIEic3gNr 0cDRQE3BsEHuJPiMLz6PPH5Ahfl612CJyrKZ8ZgVPEBhavhFgsEuCcUpmQJPL1KJSF 89Emf/w2ppjDVUJleznTjxpsW+bBIJwLheAWtd5w7SLLltzQWGnYIpQNh0n5OhLzOx dBc1/boaoaYqA== To: bug-gnu-emacs@gnu.org Subject: [PATCH] ; Fix typo in maintaining.texi Date: Sun, 25 Jun 2023 09:38:38 +0300 Message-ID: MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Received-SPF: pass client-ip=107.175.124.16; envelope-from=me@eshelyaron.com; helo=eshelyaron.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 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, SPF_HELO_PASS=-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.4 (-) 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: -2.4 (--) --=-=-= Content-Type: text/plain Tags: patch This fixes a mistake in the VC manual (`fill-paragraph` is `M-q`, not `C-q`) In GNU Emacs 30.0.50 (build 20, x86_64-apple-darwin22.5.0, NS appkit-2299.60 Version 13.4 (Build 22F66)) of 2023-06-24 built on Dazzs-MBP Repository revision: 9c2cbfa49db96eae95bb40c5fc3ce7f09781a97d Repository branch: master Windowing system distributor 'Apple', version 10.3.2299 System Description: macOS 13.4 Configured using: 'configure 'CFLAGS=-g0 -O3' --with-native-compilation --with-json --with-imagemagick --with-tree-sitter --enable-link-time-optimization' --=-=-= Content-Type: text/patch Content-Disposition: attachment; filename=0001-Fix-typo-in-maintaining.texi.patch >From 8b67a3e0ebc7c91054b874c1bda033317ae5fa2b Mon Sep 17 00:00:00 2001 From: Eshel Yaron Date: Sat, 24 Jun 2023 23:31:44 +0300 Subject: [PATCH] ; Fix typo in maintaining.texi * doc/emacs/maintaining.texi (Log Buffer): Fix a typo. --- doc/emacs/maintaining.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/emacs/maintaining.texi b/doc/emacs/maintaining.texi index 246e335cfe7..2dad70d3d13 100644 --- a/doc/emacs/maintaining.texi +++ b/doc/emacs/maintaining.texi @@ -716,7 +716,7 @@ Log Buffer (@code{log-edit-generate-changelog-from-diff}), to generate skeleton ChangeLog entries, listing all changed file and function names based on the diff of the VC fileset. Consecutive entries left empty will be -combined by @kbd{C-q} (@code{fill-paragraph}). By default the +combined by @kbd{M-q} (@code{fill-paragraph}). By default the skeleton will just include the file name, without any leading directories. If you wish to prepend the leading directories up to the VC root, customize @code{diff-add-log-use-relative-names}. -- 2.41.0 --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Sun Jun 25 02:56:20 2023 Received: (at 64279-done) by debbugs.gnu.org; 25 Jun 2023 06:56:20 +0000 Received: from localhost ([127.0.0.1]:41973 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qDJfU-0002il-EG for submit@debbugs.gnu.org; Sun, 25 Jun 2023 02:56:20 -0400 Received: from eggs.gnu.org ([209.51.188.92]:50288) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qDJfQ-0002iS-4Z for 64279-done@debbugs.gnu.org; Sun, 25 Jun 2023 02:56:14 -0400 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 1qDJfK-0002h6-Kd; Sun, 25 Jun 2023 02:56:06 -0400 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=ocmwPPsQ4u4oyffbpjL5aikg+2WrnAWCEoBFhkQBT3E=; b=NlGHXnKkbXOG rThK9uUoVfj0aiYheLEPpE+t5hq5k6heLCYyVO+2biOlens8gW8Y019RUWYaR8ESxUi/YXwAc9G8/ 123Lfhq7cXmBCBlrWjjVsl/YJywMitC5wo4TDQxOCwvGhjsR2mjJD+uBEqpH11NUp6dsPImTlXdt3 39M4qTEv2EfEf7F+skQQFF26pEAEn1xQaJQEqlEbge7tXk1k7KJNvh77RfxtRJJed/xHRsjvW4mqN fJcmlLtWW6M2ppNWj9f5931Nz5NrwR6r5cpDLd6sr/+jqBhn0VoLWJRgTb33GFc55U0FpGjktg7Y+ DB0DJ4dTKWGnQKzwZ/Q9ew==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qDJfJ-0008SF-Mz; Sun, 25 Jun 2023 02:56:06 -0400 Date: Sun, 25 Jun 2023 09:56:22 +0300 Message-Id: <83v8fcxc6h.fsf@gnu.org> From: Eli Zaretskii To: Eshel Yaron In-Reply-To: (bug-gnu-emacs@gnu.org) Subject: Re: bug#64279: [PATCH] ; Fix typo in maintaining.texi References: X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 64279-done Cc: 64279-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 (---) > Date: Sun, 25 Jun 2023 09:38:38 +0300 > From: Eshel Yaron via "Bug reports for GNU Emacs, > the Swiss army knife of text editors" > > This fixes a mistake in the VC manual (`fill-paragraph` is `M-q`, not `C-q`) Thanks, installed on the emacs-29 branch. From unknown Sat Jun 14 05:21:18 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Sun, 23 Jul 2023 11:24:10 +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