From unknown Tue Jun 17 01:47:01 2025 X-Loop: help-debbugs@gnu.org Subject: bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key Resent-From: Arash Esbati Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 16 Jan 2023 11:48:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 60858 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: 60858@debbugs.gnu.org X-Debbugs-Original-To: emacs-bugs Received: via spool by submit@debbugs.gnu.org id=B.167386967421534 (code B ref -1); Mon, 16 Jan 2023 11:48:01 +0000 Received: (at submit) by debbugs.gnu.org; 16 Jan 2023 11:47:54 +0000 Received: from localhost ([127.0.0.1]:60613 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHNxx-0005bD-RQ for submit@debbugs.gnu.org; Mon, 16 Jan 2023 06:47:54 -0500 Received: from lists.gnu.org ([209.51.188.17]:58602) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHNxw-0005az-9I for submit@debbugs.gnu.org; Mon, 16 Jan 2023 06:47:52 -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 1pHNxw-0003Qv-20 for bug-gnu-emacs@gnu.org; Mon, 16 Jan 2023 06:47:52 -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 1pHNxv-00031R-QW for bug-gnu-emacs@gnu.org; Mon, 16 Jan 2023 06:47:51 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:Subject:To:From:in-reply-to: references; bh=bfwI58+kltYAexCogVCZVBg9RvKdzkINgEGhc/s1nl8=; b=ABNbckvzZrQ19P 9qD9oog5kPRJTRQfE6OP6aeb9VZ9Lf9HZXOlHUjlly5XJYrXGVvV5cLFiGiJR53Do6oTj4vjsP/EP v4wljylgwmDnKhy8oLRYoRLOnbsj89zTcXoO8tzW79MRT4QgJvmoBBnNXbozsNZnL3vpYZM8D93O8 EZcxtNCaooKenKvsySpHqfk6VSFqsdpauOm6SNeXGI+U3QJEQNdwMCsboc8SUp+S24cCZ+2m9Ud9n ML8plPsYRjMJGouhE81/yJxIQAoKrkW5+2NZg3VhJCcRD6OO35cQystljRqLUJvTKrfncE3dgsU1a TQ8F56uG13cjz5mIOAmw==; Received: from pd9fb7ab6.dip0.t-ipconnect.de ([217.251.122.182] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pHNxv-0005Fr-83 for bug-gnu-emacs@gnu.org; Mon, 16 Jan 2023 06:47:51 -0500 From: Arash Esbati Date: Mon, 16 Jan 2023 12:47:24 +0100 Message-ID: <86358au2er.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 MIME-Version: 1.0 Content-Type: text/plain 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 (---) Hi all, is there a reason why the quotes around the above mentioned function are like this: `w32-register-hot-key` instead of the usual `w32-register-hot-key' ? If this is a copy-paste issue, the following patch against the release branch fixes it: --8<---------------cut here---------------start------------->8--- diff --git a/src/w32fns.c b/src/w32fns.c index 192d3ddf27a..7b1ffc6a6be 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -10664,7 +10664,7 @@ syms_of_w32fns (void) Properties" dialog, etc. On Windows 10, no \"Windows\" key combinations are normally handed to applications. To enable Emacs to process \"Windows\" key combinations, use the function -`w32-register-hot-key`. +`w32-register-hot-key'. For Windows 98/ME, see the doc string of `w32-phantom-key-code'. */); Vw32_pass_lwindow_to_system = Qt; @@ -10683,7 +10683,7 @@ syms_of_w32fns (void) Properties" dialog, etc. On Windows 10, no \"Windows\" key combinations are normally handed to applications. To enable Emacs to process \"Windows\" key combinations, use the function -`w32-register-hot-key`. +`w32-register-hot-key'. For Windows 98/ME, see the doc string of `w32-phantom-key-code'. */); Vw32_pass_rwindow_to_system = Qt; @@ -10698,7 +10698,7 @@ syms_of_w32fns (void) `w32-pass-rwindow-to-system' is nil. This variable is only used on Windows 98 and ME. For other Windows -versions, see the documentation of the `w32-register-hot-key` +versions, see the documentation of the `w32-register-hot-key' function. */); /* Although 255 is technically not a valid key code, it works and means that this hack won't interfere with any real key code. */ @@ -10732,7 +10732,7 @@ syms_of_w32fns (void) respective modifier, or nil to appear as the `lwindow' key. Any other value will cause the key to be ignored. -Also see the documentation of the `w32-register-hot-key` function. */); +Also see the documentation of the `w32-register-hot-key' function. */); Vw32_lwindow_modifier = Qnil; DEFVAR_LISP ("w32-rwindow-modifier", @@ -10742,7 +10742,7 @@ syms_of_w32fns (void) respective modifier, or nil to appear as the `rwindow' key. Any other value will cause the key to be ignored. -Also see the documentation of the `w32-register-hot-key` function. */); +Also see the documentation of the `w32-register-hot-key' function. */); Vw32_rwindow_modifier = Qnil; DEFVAR_LISP ("w32-apps-modifier", --8<---------------cut here---------------end--------------->8--- Best, Arash From unknown Tue Jun 17 01:47:01 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Arash Esbati Subject: bug#60858: closed (Re: bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key) Message-ID: References: <83sfga4lxt.fsf@gnu.org> <86358au2er.fsf@gnu.org> X-Gnu-PR-Message: they-closed 60858 X-Gnu-PR-Package: emacs X-Gnu-PR-Keywords: patch Reply-To: 60858@debbugs.gnu.org Date: Mon, 16 Jan 2023 14:03:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1673877782-21466-1" This is a multi-part message in MIME format... ------------=_1673877782-21466-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 60858@debbugs.gnu.org. --=20 60858: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D60858 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1673877782-21466-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 60858-done) by debbugs.gnu.org; 16 Jan 2023 14:02:24 +0000 Received: from localhost ([127.0.0.1]:60919 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHQ47-0005ZL-PD for submit@debbugs.gnu.org; Mon, 16 Jan 2023 09:02:23 -0500 Received: from eggs.gnu.org ([209.51.188.92]:39964) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHQ45-0005Z1-FD for 60858-done@debbugs.gnu.org; Mon, 16 Jan 2023 09:02:23 -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 1pHQ3z-0000Vo-MN for 60858-done@debbugs.gnu.org; Mon, 16 Jan 2023 09:02:15 -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=bjOmIVphtVxqOQsc4T6BKOgWsWKjVSs4nFKWDJHJ8yI=; b=l3mjZUCKlvCM HiT4Xm1qh7LNO+1ThLQTj688t4gtFQzQvTHWhqYOYhIm93sgMYIwG9zloXUaNTyaOfaKY1fed+phC X5ThI8WWvot2OooKHXqecDlj797mRcSjI56Qnntwgo4tnGiV2whClJE3mN73K6skWpLv0z4loDt+q e7W5GWy99BPG2sPdtzkMam4wFuFBlizPCObeS83eHAMgIU/T4+lLDXnV/Imhuf1IyvgtDMqvJ1qaM X+48Up45MRJOWaAsmZQ7mH9SN9cX6L+Qu73YIUqkyOKJ322G7MGg2FcFatA8phGMxBli0qPqmqqtk HuCAl6osZXGOZS9OuMF9sQ==; 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 1pHQ3y-0003fA-Vh; Mon, 16 Jan 2023 09:02:15 -0500 Date: Mon, 16 Jan 2023 16:02:22 +0200 Message-Id: <83sfga4lxt.fsf@gnu.org> From: Eli Zaretskii To: Arash Esbati In-Reply-To: <86358au2er.fsf@gnu.org> (message from Arash Esbati on Mon, 16 Jan 2023 12:47:24 +0100) Subject: Re: bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key References: <86358au2er.fsf@gnu.org> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 60858-done Cc: 60858-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: Arash Esbati > Date: Mon, 16 Jan 2023 12:47:24 +0100 > is there a reason why the quotes around the above mentioned function are > like this: > > `w32-register-hot-key` > > instead of the usual > > `w32-register-hot-key' > > ? It's the MD madness, sigh... > If this is a copy-paste issue, the following patch against the > release branch fixes it: Thanks, installed. ------------=_1673877782-21466-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 16 Jan 2023 11:47:54 +0000 Received: from localhost ([127.0.0.1]:60613 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHNxx-0005bD-RQ for submit@debbugs.gnu.org; Mon, 16 Jan 2023 06:47:54 -0500 Received: from lists.gnu.org ([209.51.188.17]:58602) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHNxw-0005az-9I for submit@debbugs.gnu.org; Mon, 16 Jan 2023 06:47:52 -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 1pHNxw-0003Qv-20 for bug-gnu-emacs@gnu.org; Mon, 16 Jan 2023 06:47:52 -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 1pHNxv-00031R-QW for bug-gnu-emacs@gnu.org; Mon, 16 Jan 2023 06:47:51 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:Subject:To:From:in-reply-to: references; bh=bfwI58+kltYAexCogVCZVBg9RvKdzkINgEGhc/s1nl8=; b=ABNbckvzZrQ19P 9qD9oog5kPRJTRQfE6OP6aeb9VZ9Lf9HZXOlHUjlly5XJYrXGVvV5cLFiGiJR53Do6oTj4vjsP/EP v4wljylgwmDnKhy8oLRYoRLOnbsj89zTcXoO8tzW79MRT4QgJvmoBBnNXbozsNZnL3vpYZM8D93O8 EZcxtNCaooKenKvsySpHqfk6VSFqsdpauOm6SNeXGI+U3QJEQNdwMCsboc8SUp+S24cCZ+2m9Ud9n ML8plPsYRjMJGouhE81/yJxIQAoKrkW5+2NZg3VhJCcRD6OO35cQystljRqLUJvTKrfncE3dgsU1a TQ8F56uG13cjz5mIOAmw==; Received: from pd9fb7ab6.dip0.t-ipconnect.de ([217.251.122.182] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pHNxv-0005Fr-83 for bug-gnu-emacs@gnu.org; Mon, 16 Jan 2023 06:47:51 -0500 From: Arash Esbati To: emacs-bugs Subject: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key Date: Mon, 16 Jan 2023 12:47:24 +0100 Message-ID: <86358au2er.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -2.3 (--) 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: -3.3 (---) Hi all, is there a reason why the quotes around the above mentioned function are like this: `w32-register-hot-key` instead of the usual `w32-register-hot-key' ? If this is a copy-paste issue, the following patch against the release branch fixes it: --8<---------------cut here---------------start------------->8--- diff --git a/src/w32fns.c b/src/w32fns.c index 192d3ddf27a..7b1ffc6a6be 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -10664,7 +10664,7 @@ syms_of_w32fns (void) Properties" dialog, etc. On Windows 10, no \"Windows\" key combinations are normally handed to applications. To enable Emacs to process \"Windows\" key combinations, use the function -`w32-register-hot-key`. +`w32-register-hot-key'. For Windows 98/ME, see the doc string of `w32-phantom-key-code'. */); Vw32_pass_lwindow_to_system = Qt; @@ -10683,7 +10683,7 @@ syms_of_w32fns (void) Properties" dialog, etc. On Windows 10, no \"Windows\" key combinations are normally handed to applications. To enable Emacs to process \"Windows\" key combinations, use the function -`w32-register-hot-key`. +`w32-register-hot-key'. For Windows 98/ME, see the doc string of `w32-phantom-key-code'. */); Vw32_pass_rwindow_to_system = Qt; @@ -10698,7 +10698,7 @@ syms_of_w32fns (void) `w32-pass-rwindow-to-system' is nil. This variable is only used on Windows 98 and ME. For other Windows -versions, see the documentation of the `w32-register-hot-key` +versions, see the documentation of the `w32-register-hot-key' function. */); /* Although 255 is technically not a valid key code, it works and means that this hack won't interfere with any real key code. */ @@ -10732,7 +10732,7 @@ syms_of_w32fns (void) respective modifier, or nil to appear as the `lwindow' key. Any other value will cause the key to be ignored. -Also see the documentation of the `w32-register-hot-key` function. */); +Also see the documentation of the `w32-register-hot-key' function. */); Vw32_lwindow_modifier = Qnil; DEFVAR_LISP ("w32-rwindow-modifier", @@ -10742,7 +10742,7 @@ syms_of_w32fns (void) respective modifier, or nil to appear as the `rwindow' key. Any other value will cause the key to be ignored. -Also see the documentation of the `w32-register-hot-key` function. */); +Also see the documentation of the `w32-register-hot-key' function. */); Vw32_rwindow_modifier = Qnil; DEFVAR_LISP ("w32-apps-modifier", --8<---------------cut here---------------end--------------->8--- Best, Arash ------------=_1673877782-21466-1-- From unknown Tue Jun 17 01:47:01 2025 X-Loop: help-debbugs@gnu.org Subject: bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key Resent-From: Arash Esbati Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 16 Jan 2023 14:48:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 60858 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 60858@debbugs.gnu.org Received: via spool by 60858-submit@debbugs.gnu.org id=B60858.16738804532830 (code B ref 60858); Mon, 16 Jan 2023 14:48:01 +0000 Received: (at 60858) by debbugs.gnu.org; 16 Jan 2023 14:47:33 +0000 Received: from localhost ([127.0.0.1]:32805 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHQlp-0000jZ-8R for submit@debbugs.gnu.org; Mon, 16 Jan 2023 09:47:33 -0500 Received: from eggs.gnu.org ([209.51.188.92]:51856) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHQlm-0000jD-E3 for 60858@debbugs.gnu.org; Mon, 16 Jan 2023 09:47:32 -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 1pHQlf-0000dF-OX for 60858@debbugs.gnu.org; Mon, 16 Jan 2023 09:47:24 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=+kRJdVWz5fzpw/LNR5POKvOh1ReDGUtiN9aNqdTiyGA=; b=sMyGxMPl9V2wESZqhEb6 qz1sUgXhokgJH899MMZwZEGBJnEsjIGd8oc3nSSMM6C3rE+uBS3fse5wSR7zCGQwxvShDV42xoOnr 5kCvGqradmHF/IT6WKAlsEvWa1I8TcKouBwhxjHYQ7k2ANzhj2Q0ABGDewYyg3/K1nW3rvpoI3tX4 Aa/R7pgN/IKl+XFlns6Lqlj83Fv8fS2mtnUQKhV1lJOHLC+IndrWEG7xJj+YfQDpD0LaQ+kcJqDnp wHTgBk7BAhiDXKO8XpvD/7p8rx5ArgXr2kZCEbb3zs4OYxcH1Ap2juNCnBmK+Afzn4f18j/j6ZcoZ x0CHL4JMyEsI+w==; Received: from pd9fb7ab6.dip0.t-ipconnect.de ([217.251.122.182] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pHQlc-0000vA-FW; Mon, 16 Jan 2023 09:47:21 -0500 From: Arash Esbati In-Reply-To: <83sfga4lxt.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 16 Jan 2023 16:02:22 +0200") References: <86358au2er.fsf@gnu.org> <83sfga4lxt.fsf@gnu.org> Date: Mon, 16 Jan 2023 15:47:09 +0100 Message-ID: <86y1q235aq.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 MIME-Version: 1.0 Content-Type: text/plain 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 (---) Eli Zaretskii writes: > Thanks, installed. Thanks. Did you exclude these 2 (lines 10667 & 10686) intentionally? --8<---------------cut here---------------start------------->8--- diff --git a/src/w32fns.c b/src/w32fns.c index 71206b8874c..b4192a5ffa6 100644 --- a/src/w32fns.c +++ b/src/w32fns.c @@ -10664,7 +10664,7 @@ syms_of_w32fns (void) Properties" dialog, etc. On Windows 10, no \"Windows\" key combinations are normally handed to applications. To enable Emacs to process \"Windows\" key combinations, use the function -`w32-register-hot-key`. +`w32-register-hot-key'. For Windows 98/ME, see the doc string of `w32-phantom-key-code'. */); Vw32_pass_lwindow_to_system = Qt; @@ -10683,7 +10683,7 @@ syms_of_w32fns (void) Properties" dialog, etc. On Windows 10, no \"Windows\" key combinations are normally handed to applications. To enable Emacs to process \"Windows\" key combinations, use the function -`w32-register-hot-key`. +`w32-register-hot-key'. For Windows 98/ME, see the doc string of `w32-phantom-key-code'. */); Vw32_pass_rwindow_to_system = Qt; --8<---------------cut here---------------end--------------->8--- Best, Arash From unknown Tue Jun 17 01:47:01 2025 X-Loop: help-debbugs@gnu.org Subject: bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key Resent-From: Eli Zaretskii Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 16 Jan 2023 14:57:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 60858 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Arash Esbati Cc: 60858@debbugs.gnu.org Received: via spool by 60858-submit@debbugs.gnu.org id=B60858.16738809735493 (code B ref 60858); Mon, 16 Jan 2023 14:57:02 +0000 Received: (at 60858) by debbugs.gnu.org; 16 Jan 2023 14:56:13 +0000 Received: from localhost ([127.0.0.1]:34353 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHQuC-0001QX-Sg for submit@debbugs.gnu.org; Mon, 16 Jan 2023 09:56:13 -0500 Received: from eggs.gnu.org ([209.51.188.92]:60038) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHQuA-0001QO-NG for 60858@debbugs.gnu.org; Mon, 16 Jan 2023 09:56:11 -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 1pHQu5-0002X8-Gh for 60858@debbugs.gnu.org; Mon, 16 Jan 2023 09:56:05 -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=2xIOaLw79bxpyTIXAxDPZcIFAvhsHS67dxenPKKF2TY=; b=qwIbBxVI9rWP r++posxwsPCnpdrkHVbeoOZ6uog5Kxqe6bLJNrNC9ADcy7kywDkKpFfeJHR1x1JJchlzzzq/+gguS /u1T6RnymBB49ZQMcmvFSoRJALzkc/5OuZ4DN4ikRvpRctgvpJHV2ehYQRLFkRves7usSFpYXqnai kFaeot2gAtWGT6xfo2DJQ51lwPrVhEEwVlGDQryJsYxzVmr00EHgWlAApM3eI6dbkbh7r4QvOK4Hs XmRQvLGAYiRn6NxOflM+wtdYMpldBV5rvEkDhi4OxBM7hckIi/Bl2lJpwjjo6868l0PWDyai19Tja rQ/u3HvKbYM2MsCZaFIh5Q==; 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 1pHQu4-00029o-S2; Mon, 16 Jan 2023 09:56:05 -0500 Date: Mon, 16 Jan 2023 16:56:14 +0200 Message-Id: <83fsca4jg1.fsf@gnu.org> From: Eli Zaretskii In-Reply-To: <86y1q235aq.fsf@gnu.org> (message from Arash Esbati on Mon, 16 Jan 2023 15:47:09 +0100) References: <86358au2er.fsf@gnu.org> <83sfga4lxt.fsf@gnu.org> <86y1q235aq.fsf@gnu.org> 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 (---) > From: Arash Esbati > Cc: 60858@debbugs.gnu.org > Date: Mon, 16 Jan 2023 15:47:09 +0100 > > Eli Zaretskii writes: > > > Thanks, installed. > > Thanks. Did you exclude these 2 (lines 10667 & 10686) intentionally? No, of course not. Fixed. From unknown Tue Jun 17 01:47:01 2025 X-Loop: help-debbugs@gnu.org Subject: bug#60858: [PATCH] src/w32fns.c: Quotes around w32-register-hot-key Resent-From: Arash Esbati Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 16 Jan 2023 15:02:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 60858 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Eli Zaretskii Cc: 60858@debbugs.gnu.org Received: via spool by 60858-submit@debbugs.gnu.org id=B60858.16738812826083 (code B ref 60858); Mon, 16 Jan 2023 15:02:02 +0000 Received: (at 60858) by debbugs.gnu.org; 16 Jan 2023 15:01:22 +0000 Received: from localhost ([127.0.0.1]:34362 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHQzB-0001a3-TR for submit@debbugs.gnu.org; Mon, 16 Jan 2023 10:01:22 -0500 Received: from eggs.gnu.org ([209.51.188.92]:41900) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pHQzA-0001Zo-8q for 60858@debbugs.gnu.org; Mon, 16 Jan 2023 10:01:21 -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 1pHQz3-0003fX-56 for 60858@debbugs.gnu.org; Mon, 16 Jan 2023 10:01:13 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnu.org; s=fencepost-gnu-org; h=MIME-Version:Date:References:In-Reply-To:Subject:To: From; bh=Ajl933bp5wByV/a/hgZFQoSNmoqe/74oGG0PfHyq9EE=; b=HLg8OYboJOGJC0B11Z9d X65YpId5HODnyHzWTaRQA+mQVQSM/i805g5ZCyrolPxRbb4IG9P26FLyZRZ7qCAFlWqzDrkPeTiH/ qiZO2We4aY8qxjKWMqpcDymZ7BjS868dmd92156+jeu5cVjDBwZaUkde3uQL8F8sDMfC3ZmuXx3+E MXrFMG1aXEyUBGmutqsTafHY6zcQhRld4fBDpFjte4PlIyy7mM0sFsmXB1nnWtgKV4sHYbR+JGfVO vXr0WXGYAxkgSVrdHmuXsbQ3k4lxUx3499ZumGrVhph9veUBKqG8KE40Ze1U+cXIzE7+/gRg7yTzV swb/TmBq8MTmaQ==; Received: from pd9fb7ab6.dip0.t-ipconnect.de ([217.251.122.182] helo=MUTANT) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pHQz0-0005QZ-DB; Mon, 16 Jan 2023 10:01:12 -0500 From: Arash Esbati In-Reply-To: <83fsca4jg1.fsf@gnu.org> (Eli Zaretskii's message of "Mon, 16 Jan 2023 16:56:14 +0200") References: <86358au2er.fsf@gnu.org> <83sfga4lxt.fsf@gnu.org> <86y1q235aq.fsf@gnu.org> <83fsca4jg1.fsf@gnu.org> Date: Mon, 16 Jan 2023 16:00:57 +0100 Message-ID: <86tu0q34nq.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/30.0.50 MIME-Version: 1.0 Content-Type: text/plain 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 (---) Eli Zaretskii writes: > No, of course not. Fixed. Thanks.