From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Matthew White Newsgroups: gmane.emacs.devel Subject: Fix typo in src/buffer.c Date: Sun, 11 Jul 2021 00:42:20 +0200 Message-ID: <20210711004134.4178af63@pineapple> Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_/c+Fd3B1.Q=LyQ24qQxi8uKl"; protocol="application/pgp-signature"; micalg=pgp-sha256 Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="1604"; mail-complaints-to="usenet@ciao.gmane.io" To: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Sun Jul 11 00:46:12 2021 Return-path: Envelope-to: ged-emacs-devel@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 1m2Ljf-0000A2-RZ for ged-emacs-devel@m.gmane-mx.org; Sun, 11 Jul 2021 00:46:11 +0200 Original-Received: from localhost ([::1]:35934 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1m2Lje-0002Iz-Nf for ged-emacs-devel@m.gmane-mx.org; Sat, 10 Jul 2021 18:46:10 -0400 Original-Received: from eggs.gnu.org ([2001:470:142:3::10]:56964) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m2LgT-0008Sw-1y for emacs-devel@gnu.org; Sat, 10 Jul 2021 18:42:53 -0400 Original-Received: from devianza.investici.org ([198.167.222.108]:62561) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1m2LgR-0007H4-6O for emacs-devel@gnu.org; Sat, 10 Jul 2021 18:42:52 -0400 Original-Received: from mx2.investici.org (unknown [127.0.0.1]) by devianza.investici.org (Postfix) with ESMTP id 4GMlR26Ys2z6vqb for ; Sat, 10 Jul 2021 22:42:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inventati.org; s=stigmate; t=1625956958; bh=v/hDlpGenOzgIoDv4i+sZzg8VuZZYowWSGf/HZqwqcQ=; h=Date:From:To:Subject:From; b=G6nJD7HdhKbUHii9xSgtiwAxdlvwq2UR//Z1yZpT8b1Qxr0Io2EHcIc6B1sb5R2iT Xa9wSPwXzOncusPlR4kCQnWPbBzF7S8FiHERXY3UV/rfxL5PzGE3b831T96OJvELaG LKppTjw2q54Vu71kxMlb0zUZB0r9HROCOKF4lk3o= Original-Received: from [198.167.222.108] (mx2.investici.org [198.167.222.108]) (Authenticated sender: mehw.is.me@inventati.org) by localhost (Postfix) with ESMTPSA id 4GMlR23rYfz6vmr for ; Sat, 10 Jul 2021 22:42:38 +0000 (UTC) X-Mailer: Claws Mail 3.17.8 (GTK+ 2.24.33; x86_64-pc-linux-gnu) Received-SPF: pass client-ip=198.167.222.108; envelope-from=mehw.is.me@inventati.org; helo=devianza.investici.org X-Spam_score_int: 9 X-Spam_score: 0.9 X-Spam_bar: / X-Spam_report: (0.9 / 5.0 requ) AC_FROM_MANY_DOTS=2.999, 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_NONE=-0.0001, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane-mx.org@gnu.org Original-Sender: "Emacs-devel" Xref: news.gmane.io gmane.emacs.devel:271170 Archived-At: --Sig_/c+Fd3B1.Q=LyQ24qQxi8uKl Content-Type: multipart/mixed; boundary="MP_/t1TiUS65A8/s0KIdh1sdVLj" --MP_/t1TiUS65A8/s0KIdh1sdVLj Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hello, The attached patch fixes a typo in 'src/buffer.c'. This is really a trivial fix ;) - /* Run hooks with the buffer to be killed the current buffer. */ + /* Run hooks with the buffer to be killed as the current buffer. */ Best regards, -Matthew --MP_/t1TiUS65A8/s0KIdh1sdVLj Content-Type: text/x-patch Content-Transfer-Encoding: quoted-printable Content-Disposition: attachment; filename=0001-src-buffer.c-kill-buffer-Fix-a-typo.patch =46rom 9e570fdc3d51c122042970e1be29728c72f6e2f6 Mon Sep 17 00:00:00 2001 From: Matthew White Date: Sat, 10 Jul 2021 22:33:41 +0000 Subject: [PATCH] * src/buffer.c (kill-buffer): Fix a typo. --- src/buffer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/buffer.c b/src/buffer.c index bbb0edd792..02ca23eb2d 100644 --- a/src/buffer.c +++ b/src/buffer.c @@ -1757,7 +1757,7 @@ cleaning up all windows currently displaying the buff= er to be killed. */) if (thread_check_current_buffer (b)) return Qnil; =20 - /* Run hooks with the buffer to be killed the current buffer. */ + /* Run hooks with the buffer to be killed as the current buffer. */ { ptrdiff_t count =3D SPECPDL_INDEX (); =20 --=20 2.31.1 --MP_/t1TiUS65A8/s0KIdh1sdVLj-- --Sig_/c+Fd3B1.Q=LyQ24qQxi8uKl Content-Type: application/pgp-signature Content-Description: OpenPGP digital signature -----BEGIN PGP SIGNATURE----- iQEzBAEBCAAdFiEEHleiF1SoBpqVdUvfw5wJ3TZNsgAFAmDqIkwACgkQw5wJ3TZN sgDwRQf/c5X0WN14I4/3FXL0eWGtwQILWGVQtrOHgUewaccHgWjhY++NOUG4wyWj SkyFEG8vmqIl5DjH3Yvv2b9IXHyoqcL1mNLctzSSRV3suXAsPDMAicdS3RR5B2mU ndNqANwgQMvvuoVxnNE325/jN+UXjsYYlcRZpku7Pw1xb0NqWBLXQ/dAUOv3IPAe W6cURO3g+2DPrQcUOgt6wG5rp8zMNVi4iAQP3aLo2UvXHqG1lUTy9VHCprw/tjWn +nvoE793XKmM8JpH6SySrMNHlpElMJW8GZEPbTkxSxYQOkexNNZtNqfjfjMlMNDR d7XUsHb1QuQA1mhffHwJmvOZqVcBMA== =19st -----END PGP SIGNATURE----- --Sig_/c+Fd3B1.Q=LyQ24qQxi8uKl--