From unknown Tue Jun 24 15:45:09 2025 X-Loop: help-debbugs@gnu.org Subject: bug#57294: [PATCH] Actually make c-awk-old-ByLL buffer-local Resent-From: "Paul A. Patience" Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 19 Aug 2022 04:04:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 57294 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 57294@debbugs.gnu.org Cc: "Paul A. Patience" X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Reply-To: "Paul A. Patience" Received: via spool by submit@debbugs.gnu.org id=B.166088179415332 (code B ref -1); Fri, 19 Aug 2022 04:04:01 +0000 Received: (at submit) by debbugs.gnu.org; 19 Aug 2022 04:03:14 +0000 Received: from localhost ([127.0.0.1]:57040 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOtE2-0003zD-81 for submit@debbugs.gnu.org; Fri, 19 Aug 2022 00:03:14 -0400 Received: from lists.gnu.org ([209.51.188.17]:40252) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oOtE1-0003z6-6T for submit@debbugs.gnu.org; Fri, 19 Aug 2022 00:03:13 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:45628) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOtE0-0003Kq-Gw for bug-gnu-emacs@gnu.org; Fri, 19 Aug 2022 00:03:12 -0400 Received: from mail-4317.proton.ch ([185.70.43.17]:61245) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1oOtDv-0001XU-Jh for bug-gnu-emacs@gnu.org; Fri, 19 Aug 2022 00:03:10 -0400 Date: Fri, 19 Aug 2022 04:02:56 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=apatience.com; s=protonmail2; t=1660881782; x=1661140982; bh=jaKk9bfmigYhUseCgYlKqTWQUbOm0uw/NYbjUynukUw=; h=Date:To:From:Cc:Reply-To:Subject:Message-ID:Feedback-ID:From:To: Cc:Date:Subject:Reply-To:Feedback-ID:Message-ID; b=YNPnWWcjFeifm5Zfh4z13eLNnUXtu3vkHpOw0hY+u09X2B/UrFuIywyE3/DKV7AVF 099MX7qycinQezI/fUGkAFsGmPW2TxzLQS49o/GzhnJ5oyQ8zZoI49nh20FClTgVtR fhBQZBk2AUGdF0WD8Tlnffm/eyESPX8e4S/1zNfF2u+S1KBW+JKRk6UpNvrWkcpCFw ASGO74S2aW78lCB5ZlUMKVpUYQ/sI/v7eXx38WEPPYeDcon8PX+2XCsAqHQpFo6+yX Xta8fo6URsK49T1/vj3ObzEzIjsIMh2VvnZg4NzLg4VIbZ16tCW2QH2qM9XIj+wAsN VBNbQQGBDZO/w== From: "Paul A. Patience" Message-ID: <20220819040245.30281-1-paul@apatience.com> Feedback-ID: 19227857:user:proton MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=185.70.43.17; envelope-from=paul@apatience.com; helo=mail-4317.proton.ch 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, RCVD_IN_MSPIKE_H2=-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.3 (-) 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.3 (--) * lisp/progmodes/cc-awk.el (c-awk-old-ByLL): Make buffer-local by fixing a typo in the symbol provided to make-variable-buffer-local. --- lisp/progmodes/cc-awk.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/progmodes/cc-awk.el b/lisp/progmodes/cc-awk.el index 9ea1557391..57750a2b39 100644 --- a/lisp/progmodes/cc-awk.el +++ b/lisp/progmodes/cc-awk.el @@ -887,7 +887,7 @@ ;; subsequent use of movement functions, etc. However, it seems that if f= ont ;; lock _is_ enabled, we can always leave it to do the job. (defvar c-awk-old-ByLL 0) -(make-variable-buffer-local 'c-awk-old-Byll) +(make-variable-buffer-local 'c-awk-old-ByLL) ;; Just beyond logical line following the region which is about to be chan= ged. ;; Set in c-awk-record-region-clear-NL and used in c-awk-after-change. -- 2.37.1 From unknown Tue Jun 24 15:45:09 2025 X-Loop: help-debbugs@gnu.org Subject: bug#57294: [PATCH] Actually make c-awk-old-ByLL buffer-local Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Fri, 19 Aug 2022 12:06:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 57294 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: "Paul A. Patience" Cc: 57294@debbugs.gnu.org Received: via spool by 57294-submit@debbugs.gnu.org id=B57294.166091070316086 (code B ref 57294); Fri, 19 Aug 2022 12:06:02 +0000 Received: (at 57294) by debbugs.gnu.org; 19 Aug 2022 12:05:03 +0000 Received: from localhost ([127.0.0.1]:57476 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oP0kJ-0004BO-7w for submit@debbugs.gnu.org; Fri, 19 Aug 2022 08:05:03 -0400 Received: from quimby.gnus.org ([95.216.78.240]:38354) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oP0kH-0004Ap-U6 for 57294@debbugs.gnu.org; Fri, 19 Aug 2022 08:05:02 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:Date:References: In-Reply-To:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=00RjsHCITcWEH9MMYzY/HaTJI26KTWD8qC4PuPJfVVo=; b=jOoIuU47m7FX7rq2FMnuGZNk8B ZqCChldqhPg9wIwBCFA8oEv3yZRRA1wA6ql0rtlQZJEtT2+385MyT9/t33rvU0zLuLMnmDPwWEZaA yY58CQI/cJiKbjAU+IJZogNpT29Ows9JpnO/i6I7Jzsw3NxKOzddEdmHLR+dKSmoDyIw=; Received: from [84.212.220.105] (helo=joga) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oP0k9-00070H-IS; Fri, 19 Aug 2022 14:04:55 +0200 From: Lars Ingebrigtsen In-Reply-To: <20220819040245.30281-1-paul@apatience.com> (Paul A. Patience's message of "Fri, 19 Aug 2022 04:02:56 +0000") References: <20220819040245.30281-1-paul@apatience.com> X-Now-Playing: Winston Tong's _Theoretically Chinese_: "Broken English" Date: Fri, 19 Aug 2022 14:04:53 +0200 Message-ID: <87lerkv3q2.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: "Paul A. Patience" writes: > * lisp/progmodes/cc-awk.el (c-awk-old-ByLL): Make buffer-local by fixing > a typo in the symbol provided to make-variable-buffer-local. Thanks; pushed to Emacs 29. Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) 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 (---) "Paul A. Patience" writes: > * lisp/progmodes/cc-awk.el (c-awk-old-ByLL): Make buffer-local by fixing > a typo in the symbol provided to make-variable-buffer-local. Thanks; pushed to Emacs 29. From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 19 08:05:09 2022 Received: (at control) by debbugs.gnu.org; 19 Aug 2022 12:05:09 +0000 Received: from localhost ([127.0.0.1]:57479 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oP0kP-0004Bi-I6 for submit@debbugs.gnu.org; Fri, 19 Aug 2022 08:05:09 -0400 Received: from quimby.gnus.org ([95.216.78.240]:38378) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1oP0kO-0004BN-6v for control@debbugs.gnu.org; Fri, 19 Aug 2022 08:05:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=pg0X0K5DSCec1GUfAyv3F4Jc2Ly+iEMbQSN7bOhI7TI=; b=MHb7oKR73ofcnRgJGC6KY9u30x y4OFGMVq8JVy/qtUdCX1C4tjU46+R1I+ak0cLauIn1KeaKinmf1ulih69JBNgE0vqQTfYGcbwhqJA cdTyC1j2pDCkwZUavRIspT8qperuddpbkZCOpR1IFBK5rFz+xPw3Q77Ufc34uxdkFT5U=; Received: from [84.212.220.105] (helo=joga) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1oP0kG-00070U-Ee for control@debbugs.gnu.org; Fri, 19 Aug 2022 14:05:02 +0200 Date: Fri, 19 Aug 2022 14:04:58 +0200 Message-Id: <87k074v3px.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #57294 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 57294 29.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control 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 (---) close 57294 29.1 quit