From unknown Wed Jun 18 23:18:14 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#76408 <76408@debbugs.gnu.org> To: bug#76408 <76408@debbugs.gnu.org> Subject: Status: 29.4; read-key always returns only tab-line for click in tab-line Reply-To: bug#76408 <76408@debbugs.gnu.org> Date: Thu, 19 Jun 2025 06:18:14 +0000 retitle 76408 29.4; read-key always returns only tab-line for click in tab-= line reassign 76408 emacs submitter 76408 Jared Finder severity 76408 normal thanks From debbugs-submit-bounces@debbugs.gnu.org Tue Feb 18 17:35:37 2025 Received: (at submit) by debbugs.gnu.org; 18 Feb 2025 22:35:37 +0000 Received: from localhost ([127.0.0.1]:35383 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tkWBl-0000R4-1a for submit@debbugs.gnu.org; Tue, 18 Feb 2025 17:35:37 -0500 Received: from lists.gnu.org ([2001:470:142::17]:44582) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tkWBh-0000Q8-EW for submit@debbugs.gnu.org; Tue, 18 Feb 2025 17:35:34 -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 1tkWBZ-0006ZP-Ps for bug-gnu-emacs@gnu.org; Tue, 18 Feb 2025 17:35:25 -0500 Received: from greenhill.hpalace.com ([192.155.80.58]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1tkWBW-00036f-1F for bug-gnu-emacs@gnu.org; Tue, 18 Feb 2025 17:35:24 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=finder.org; s=2018; t=1739918113; bh=Inup0ms7R7vI9rPYLM2EDGb/PeaCn6z9Lr/Ud97aDPA=; h=Date:From:To:Subject:From; b=ayxsJY+3ZTdE/XiHA96vzee69s65bwYL+66dhOLvBarr7hk/s3j7JqZp9IkKSaNvW Ira8VSE6G8yuvoUZeTrQ8f2lhdJ1Sdt5UGfCYLLS0rRJCS8eRlJJ+5/nXP3rCIlfgC QiHKkudrEoD82qgb8z5lzoEj6rPeeMlUf3xp7UIbhtookgoUDjWWzVht6/A/dFRpko oxYPj6vWK3k5nSIldz+HU9VkchjBGKnqTBv+lHq2qG9YFCychErNEsiYhjWmTmlzT3 ibxT7FtghpUlQTPS9q6Fh/kn5ZBzP2XgPnBnPKCZOBRbq7tqCZ1MKCTwpdMJFiA36d jjTFsh9J/dQnQ== Received: from mail.finder.org (unknown [192.155.80.58]) by greenhill.hpalace.com (Postfix) with ESMTPSA id 3857113AF for ; Tue, 18 Feb 2025 22:35:13 +0000 (UTC) MIME-Version: 1.0 Date: Tue, 18 Feb 2025 17:35:13 -0500 From: Jared Finder To: Bug-gnu Emacs Subject: 29.4; read-key always returns only tab-line for click in tab-line Message-ID: <3df498ad51c5dd4ae85493e67ce894d6@finder.org> X-Sender: jared@finder.org Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Received-SPF: pass client-ip=192.155.80.58; envelope-from=jared@finder.org; helo=greenhill.hpalace.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, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) 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.1 (/) read-key only reports the symbol tab-line for clicks in the tab-line, instead of the mouse event. To reproduce: emacs -q -nw M-x xterm-mouse-mode Show the tab-line, either global-tab-line-mode or global-window-tool-bar-mode Then just eval (read-key) Clicks in the mode-line or header-line return the underlying mouse event, but clicks in tab-line-only return the symbol tab-line. I believe the following change to read-key fixes this: @@ -3074,7 +3074,7 @@ (catch 'read-key (read-key-sequence-vector prompt nil t))) (key (aref keys 0))) (if (and (> (length keys) 1) - (memq key '(mode-line header-line + (memq key '(mode-line header-line tab-line left-fringe right-fringe))) (aref keys 1) key))) -- MJF From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 19 02:44:03 2025 Received: (at 76408) by debbugs.gnu.org; 19 Feb 2025 07:44:03 +0000 Received: from localhost ([127.0.0.1]:41264 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tkekV-00089k-Ay for submit@debbugs.gnu.org; Wed, 19 Feb 2025 02:44:03 -0500 Received: from relay2-d.mail.gandi.net ([217.70.183.194]:46217) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tkekF-000876-CR; Wed, 19 Feb 2025 02:43:48 -0500 Received: by mail.gandi.net (Postfix) with ESMTPSA id BC7E643161; Wed, 19 Feb 2025 07:43:37 +0000 (UTC) From: Juri Linkov To: Jared Finder Subject: Re: bug#76408: 29.4; read-key always returns only tab-line for click in tab-line In-Reply-To: <3df498ad51c5dd4ae85493e67ce894d6@finder.org> Organization: LINKOV.NET References: <3df498ad51c5dd4ae85493e67ce894d6@finder.org> Date: Wed, 19 Feb 2025 09:42:06 +0200 Message-ID: <87o6yys7n5.fsf@mail.linkov.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/31.0.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-GND-State: clean X-GND-Score: -100 X-GND-Cause: gggruggvucftvghtrhhoucdtuddrgeefvddrtddtgdeifeeijecutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfitefpfffkpdcuggftfghnshhusghstghrihgsvgenuceurghilhhouhhtmecufedtudenucesvcftvggtihhpihgvnhhtshculddquddttddmnecujfgurhephffvvefujghofhffkfgfgggtsehttdertddtredtnecuhfhrohhmpefluhhrihcunfhinhhkohhvuceojhhurhhisehlihhnkhhovhdrnhgvtheqnecuggftrfgrthhtvghrnhepffegteefveelhfeljeefueehieduiedtfffhuddtkeeffffghfevheetgeeukeehnecukfhppeeluddruddvledrleekrdehnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehinhgvthepledurdduvdelrdelkedrhedphhgvlhhopehmrghilhdrghgrnhguihdrnhgvthdpmhgrihhlfhhrohhmpehjuhhriheslhhinhhkohhvrdhnvghtpdhnsggprhgtphhtthhopeefpdhrtghpthhtoheptghonhhtrhholhesuggvsggsuhhgshdrghhnuhdrohhrghdprhgtphhtthhopeejieegtdekseguvggssghughhsrdhgnhhurdhorhhgpdhrtghpthhtohepjhgrrhgvugesfhhinhguvghrrdhorhhg X-GND-Sasl: juri@linkov.net X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 76408 Cc: 76408@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: -1.7 (-) close 76408 31.0.50 thanks > read-key only reports the symbol tab-line for clicks in the tab-line, > instead of the mouse event. > > To reproduce: > > emacs -q -nw > M-x xterm-mouse-mode > Show the tab-line, either global-tab-line-mode or > global-window-tool-bar-mode > Then just eval (read-key) > > Clicks in the mode-line or header-line return the underlying mouse > event, but clicks in tab-line-only return the symbol tab-line. > > I believe the following change to read-key fixes this: > > @@ -3074,7 +3074,7 @@ read-key > - (memq key '(mode-line header-line > + (memq key '(mode-line header-line tab-line Thanks for the fix. Pushed to master (I guess it's too late for release?) From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 19 11:00:28 2025 Received: (at 76408) by debbugs.gnu.org; 19 Feb 2025 16:00:28 +0000 Received: from localhost ([127.0.0.1]:49571 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tkmUt-0004kU-Pr for submit@debbugs.gnu.org; Wed, 19 Feb 2025 11:00:28 -0500 Received: from eggs.gnu.org ([2001:470:142:3::10]:52718) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tkmUr-0004jY-CQ for 76408@debbugs.gnu.org; Wed, 19 Feb 2025 11:00:26 -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 1tkmUl-00013n-4o; Wed, 19 Feb 2025 11:00:19 -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=ApST+WFzSHkhK3d7ETUhohNynuULihT2uz+dStfBVD8=; b=ld15BwnQ9+H1 JHQb9m148LjuBcrNcYmec4mvM0Lz7jbkzjqTDCLI/G0iGTA2EIqW4+IAwLabmHirniCGZvskjnvLt dIcaqrouxRTT5mBld6OHCLaM4FZ39+dVWL6OW/sy+d8ToDUQbF+r5vN7Uy4AgVfJBtgysdZHxXacj UrFsJ1GSVat/Unntl/gPAu+g9QFA9vaYWMBTzU6QLFGiEb++nbfJaY5sy4fj/1Xp1x4FSEWrRnZsb T5fAlndeTRk0RePNXlzPAf4bCCAjRA6+xeHkV5luLTJDASwxNef4MXu12AzBFzBaVvMgVdKR8kZdh 0eRg6nERHVCwCLZa7H0Yzg==; Date: Wed, 19 Feb 2025 18:00:10 +0200 Message-Id: <86o6yx6i2d.fsf@gnu.org> From: Eli Zaretskii To: Juri Linkov In-Reply-To: <87o6yys7n5.fsf@mail.linkov.net> (message from Juri Linkov on Wed, 19 Feb 2025 09:42:06 +0200) Subject: Re: bug#76408: 29.4; read-key always returns only tab-line for click in tab-line References: <3df498ad51c5dd4ae85493e67ce894d6@finder.org> <87o6yys7n5.fsf@mail.linkov.net> X-Spam-Score: -1.6 (-) X-Debbugs-Envelope-To: 76408 Cc: 76408@debbugs.gnu.org, jared@finder.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: -2.6 (--) > Cc: 76408@debbugs.gnu.org > From: Juri Linkov > Date: Wed, 19 Feb 2025 09:42:06 +0200 > > close 76408 31.0.50 > thanks > > > read-key only reports the symbol tab-line for clicks in the tab-line, > > instead of the mouse event. > > > > To reproduce: > > > > emacs -q -nw > > M-x xterm-mouse-mode > > Show the tab-line, either global-tab-line-mode or > > global-window-tool-bar-mode > > Then just eval (read-key) > > > > Clicks in the mode-line or header-line return the underlying mouse > > event, but clicks in tab-line-only return the symbol tab-line. > > > > I believe the following change to read-key fixes this: > > > > @@ -3074,7 +3074,7 @@ read-key > > - (memq key '(mode-line header-line > > + (memq key '(mode-line header-line tab-line > > Thanks for the fix. Pushed to master (I guess it's too late for release?) It's okay to backport this to the release branch. Thanks. From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 19 13:00:08 2025 Received: (at 76408) by debbugs.gnu.org; 19 Feb 2025 18:00:09 +0000 Received: from localhost ([127.0.0.1]:51015 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tkoMh-0001uM-Lw for submit@debbugs.gnu.org; Wed, 19 Feb 2025 13:00:08 -0500 Received: from mail-ed1-x52d.google.com ([2a00:1450:4864:20::52d]:50596) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1tkoMf-0001qm-1r for 76408@debbugs.gnu.org; Wed, 19 Feb 2025 13:00:06 -0500 Received: by mail-ed1-x52d.google.com with SMTP id 4fb4d7f45d1cf-5e04861e7a6so2031a12.1 for <76408@debbugs.gnu.org>; Wed, 19 Feb 2025 10:00:05 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1739987999; x=1740592799; darn=debbugs.gnu.org; h=cc:to:subject:message-id:date:mime-version:references:in-reply-to :from:from:to:cc:subject:date:message-id:reply-to; bh=2GETYh3qFAWvoB6/8pus5PyLyQT+jxILZgPQdP1EHz8=; b=S1DB2Ikdr/dSfGgG/FsXryW3huytXZiOk42iTQPJE8Nu4o/IpnStLh20vQptXyjABS nl2+L7bbUU7F4jG2csEVR3R5eiIat5kJWXVimNwHKl/qyyAxFWi0CzqdnYTpg8UqL9H4 LReo/+t8yyFZzL2pyUs2QHvJcHHtItm3j1sUww6+SzHoggdQBH60hnHhmX0Rnt0k/jay yr72rF71GFqlc+VDp1DmjOT61US9bsvaTwqFixJY/ID8NWuo4mtPNa7JumhM5AIuUs/b 8g1NIn9OZpmQsXV5SSBCfaXRWj6PyeMND65f0Sxzl0vIikiZYMqGzT4gLnE9o7n/r/4W o11A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1739987999; x=1740592799; h=cc:to:subject:message-id:date:mime-version:references:in-reply-to :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=2GETYh3qFAWvoB6/8pus5PyLyQT+jxILZgPQdP1EHz8=; b=S/8PZH7JjFseOZIFyzJmOGar0AsBBgw+93NCZWGBejMN5feqx+WeLcbCmFbW69n/EU cSWgeMcB+qLYmaV5SSqG6xwURiJQPpIGpKBTUVSeNMCaAVdYATWeIwB/IRukPn4ktzn5 w3DQlYpCyAkx6+Odg+3sInHX0MvnpXEk7OZsVjhQ2H4I8+d+GmcAuu0QsRrPYo0Xmnda GoPyKGlhvztXHyxd+1EaWoqYPP06Wy3XIosABbQk5FnWl/bzYT75fuAyGE+AtkkoiRNM 4u3wq/kxFmAY8N387mhlREHbph6zsOzeQG3xE+a7nDMupqhqJRrd6sMvwu21k2csAJEI ZfHA== X-Gm-Message-State: AOJu0YyJCDxEAv01wBbjTCRBVeCqEek5VCAEjCV2ULCWDxWeui6PpTKF ykBEmaC4gpxmx2waOPTi7nfIskdcvRpcrtkV1zgdGHSgomLL5OXlig3YZWyj0pPMFbl0EUMwb6x wnnVzQUDWffLWwKxXXxtIWf+zagg= X-Gm-Gg: ASbGncttlG/8UWsZ5xjjQhlgH3UAAPDCi9EyDf2BChd2dOLuO9xqF5LF9F6RjdujjcG fZNIYjP3Bu6uLdTTBGz958flAnboPcb+bSJM6ztDet7oVE9J3YzJcud6fmBBIfn1qXp+CRiQSgA == X-Google-Smtp-Source: AGHT+IEf8bvzviQERFhATxG7nDl21U6fqhwIJ/y4jKQJulMWih2K5TH/TiP6yqTMCSYxC9gBOTZZopGnK/nwSWJD22g= X-Received: by 2002:a05:6402:268a:b0:5d1:f009:925e with SMTP id 4fb4d7f45d1cf-5e0360bb35cmr19443403a12.16.1739987998868; Wed, 19 Feb 2025 09:59:58 -0800 (PST) Received: from 753933720722 named unknown by gmailapi.google.com with HTTPREST; Wed, 19 Feb 2025 17:59:57 +0000 From: Stefan Kangas In-Reply-To: <86o6yx6i2d.fsf@gnu.org> References: <3df498ad51c5dd4ae85493e67ce894d6@finder.org> <87o6yys7n5.fsf@mail.linkov.net> <86o6yx6i2d.fsf@gnu.org> MIME-Version: 1.0 Date: Wed, 19 Feb 2025 17:59:57 +0000 X-Gm-Features: AWEUYZkOD3TzhnYA4gXO9uokzCIqOcYABcXX0kD6c4OhEFHDWSHtVf9lOwKONqQ Message-ID: Subject: Re: bug#76408: 29.4; read-key always returns only tab-line for click in tab-line To: Eli Zaretskii , Juri Linkov Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 76408 Cc: 76408@debbugs.gnu.org, jared@finder.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: -0.3 (/) Eli Zaretskii writes: >> Cc: 76408@debbugs.gnu.org >> From: Juri Linkov >> Date: Wed, 19 Feb 2025 09:42:06 +0200 >> >> close 76408 31.0.50 >> thanks >> >> > read-key only reports the symbol tab-line for clicks in the tab-line, >> > instead of the mouse event. >> > >> > To reproduce: >> > >> > emacs -q -nw >> > M-x xterm-mouse-mode >> > Show the tab-line, either global-tab-line-mode or >> > global-window-tool-bar-mode >> > Then just eval (read-key) >> > >> > Clicks in the mode-line or header-line return the underlying mouse >> > event, but clicks in tab-line-only return the symbol tab-line. >> > >> > I believe the following change to read-key fixes this: >> > >> > @@ -3074,7 +3074,7 @@ read-key >> > - (memq key '(mode-line header-line >> > + (memq key '(mode-line header-line tab-line >> >> Thanks for the fix. Pushed to master (I guess it's too late for release?) > > It's okay to backport this to the release branch. Please wait until after Emacs 30.1 for now. Thanks in advance. From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 19 14:14:39 2025 Received: (at 76408) by debbugs.gnu.org; 19 Feb 2025 19:14:39 +0000 Received: from localhost ([127.0.0.1]:51883 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tkpWo-0001uO-Gz for submit@debbugs.gnu.org; Wed, 19 Feb 2025 14:14:38 -0500 Received: from relay5-d.mail.gandi.net ([2001:4b98:dc4:8::225]:50259) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tkpWl-0001tA-43 for 76408@debbugs.gnu.org; Wed, 19 Feb 2025 14:14:36 -0500 Received: by mail.gandi.net (Postfix) with ESMTPSA id 9BE0F432E9; Wed, 19 Feb 2025 19:14:24 +0000 (UTC) From: Juri Linkov To: Stefan Kangas Subject: Re: bug#76408: 29.4; read-key always returns only tab-line for click in tab-line In-Reply-To: Organization: LINKOV.NET References: <3df498ad51c5dd4ae85493e67ce894d6@finder.org> <87o6yys7n5.fsf@mail.linkov.net> <86o6yx6i2d.fsf@gnu.org> Date: Wed, 19 Feb 2025 21:12:17 +0200 Message-ID: <87msehzr3i.fsf@mail.linkov.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/31.0.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-GND-State: clean X-GND-Score: -100 X-GND-Cause: gggruggvucftvghtrhhoucdtuddrgeefvddrtddtgdeihedtjecutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfitefpfffkpdcuggftfghnshhusghstghrihgsvgenuceurghilhhouhhtmecufedtudenucesvcftvggtihhpihgvnhhtshculddquddttddmnecujfgurhephffvvefujghofhffkfgfgggtsehttdertddtredtnecuhfhrohhmpefluhhrihcunfhinhhkohhvuceojhhurhhisehlihhnkhhovhdrnhgvtheqnecuggftrfgrthhtvghrnhepffegteefveelhfeljeefueehieduiedtfffhuddtkeeffffghfevheetgeeukeehnecukfhppeeluddruddvledrleekrdehnecuvehluhhsthgvrhfuihiivgeptdenucfrrghrrghmpehinhgvthepledurdduvdelrdelkedrhedphhgvlhhopehmrghilhdrghgrnhguihdrnhgvthdpmhgrihhlfhhrohhmpehjuhhriheslhhinhhkohhvrdhnvghtpdhnsggprhgtphhtthhopeegpdhrtghpthhtohepjhgrrhgvugesfhhinhguvghrrdhorhhgpdhrtghpthhtohepjeeigedtkeesuggvsggsuhhgshdrghhnuhdrohhrghdprhgtphhtthhopegvlhhiiiesghhnuhdrohhrghdprhgtphhtthhopehsthgvfhgrnhhkrghnghgrshesghhmrghilhdrtghomh X-GND-Sasl: juri@linkov.net X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 76408 Cc: Eli Zaretskii , jared@finder.org, 76408@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: -1.0 (-) >>> > I believe the following change to read-key fixes this: >>> > >>> > @@ -3074,7 +3074,7 @@ read-key >>> > - (memq key '(mode-line header-line >>> > + (memq key '(mode-line header-line tab-line >>> >>> Thanks for the fix. Pushed to master (I guess it's too late for release?) >> >> It's okay to backport this to the release branch. > > Please wait until after Emacs 30.1 for now. Thanks in advance. This means to backport to Emacs 30.2 later? From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 19 16:20:44 2025 Received: (at 76408) by debbugs.gnu.org; 19 Feb 2025 21:20:45 +0000 Received: from localhost ([127.0.0.1]:53220 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tkrUq-0005rV-Cu for submit@debbugs.gnu.org; Wed, 19 Feb 2025 16:20:44 -0500 Received: from mail-ed1-x52c.google.com ([2a00:1450:4864:20::52c]:59692) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.84_2) (envelope-from ) id 1tkrUn-0005qh-Ms for 76408@debbugs.gnu.org; Wed, 19 Feb 2025 16:20:42 -0500 Received: by mail-ed1-x52c.google.com with SMTP id 4fb4d7f45d1cf-5ded51d31f1so302208a12.3 for <76408@debbugs.gnu.org>; Wed, 19 Feb 2025 13:20:41 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20230601; t=1740000035; x=1740604835; darn=debbugs.gnu.org; h=cc:to:subject:message-id:date:mime-version:references:in-reply-to :from:from:to:cc:subject:date:message-id:reply-to; bh=4WviW++0e2wfAQuAwOvXXbv31Gb9yoccE66SR4ahPmM=; b=CjJvD9faJc8CeLTi7XfhayfvJP/UPXsIjxH4m+bC51kCPuAvXRnzVBrPKgohNTCt8I Azm6SEgtU3MCgPg+Wgw95IGXeB1Bg3B0XIMt51G1xXyy/X2SGroCUHrW2l39ur+BXa3f uEwpl4TK8p6bABD+nXe9GX8xnD/Caogz3XplF+MHR66iG+ezzADNLEeMKwOCRbY1PH0J hhnh6esdqdXCCk8MMkL/gpjF8SLuqzoAigbBIGrv2bcFeSSYKNXk8VtEuboaqQQfYjBn yEW8o71ZI2uUqqVPlBqQs2vjNTNlyYYMkF62sRsHNNWtQGPTEnl6E2TULDYdFihAmxVf ovTw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20230601; t=1740000035; x=1740604835; h=cc:to:subject:message-id:date:mime-version:references:in-reply-to :from:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=4WviW++0e2wfAQuAwOvXXbv31Gb9yoccE66SR4ahPmM=; b=RM6HaQfN/R5cT+QlHrj6Doe5TBJkUHSXYKI8B4ZFsNSgLKhh6S6+6j7JIBSe2EuZIH /EH2ga73a4A29aMbAaCLw7zuTkpVsLHyqtg42BiF6tCvIABVk7pdCxS1jb+oH8L4GY9p D9ImZH5S2c4e7ZE9WPm4v/BdgR/DuS+W7f4DBpVzKCNLIKgaBklrLbQUds8k3XuGzmWp kI/WaGUjeBtcFhTdeAUaPVxhm2PzN/j2yuw/TTnBp8yH+9Me8FOlHMMrpitZZmKYquMq bir1l5uL41EnnM4hCowV/SmpG+0CBV1EPp96gGTrf5ITa+2cZ7rPMhwiDmgqgqq3TSeP Fbdg== X-Forwarded-Encrypted: i=1; AJvYcCXAuWKPwcAIadiVDJwsO5zbmR2rJ6QC5jxzzCIOIDqMv+t5Md8XoD8X/6QwPCZ9axYordRYYA==@debbugs.gnu.org X-Gm-Message-State: AOJu0YzldaZoGhdxN1SBSeZC2S5rvzVJ4f3mp1ag/WSbbGgIsYjusKth 1oK1W7xbni/tIwE0UMAIgFIpHOQsI/airGI1l420+d4sMuNivlCkuTsj20zivxtoIJcV3ez+PTi WktyRgDLMF1PvGaRSuC6JT0GY/rU= X-Gm-Gg: ASbGncu36MXgKSt9gQk1/wma0LSD0hN940Ap20TbosXWMBso573nhcpQLXLUuog/iqr eU9pK6F5wTDPvbYQmNqppMdGbJu3kWoZRskf8hb656BdeH3sNlt7/9RpL02XRJtS3fpUhOhCpsQ == X-Google-Smtp-Source: AGHT+IF3x6Tolvgzc+yunnrKiCP14JnFz+/ZV5l2uF8V9AqBj8nIvaMBiYdMegryPv7hRuog1gKEdh4IiS+Ic2DZWJs= X-Received: by 2002:a05:6402:27ca:b0:5e0:8007:7497 with SMTP id 4fb4d7f45d1cf-5e08951d1e1mr5152917a12.17.1740000035325; Wed, 19 Feb 2025 13:20:35 -0800 (PST) Received: from 753933720722 named unknown by gmailapi.google.com with HTTPREST; Wed, 19 Feb 2025 21:20:35 +0000 From: Stefan Kangas In-Reply-To: <87msehzr3i.fsf@mail.linkov.net> References: <3df498ad51c5dd4ae85493e67ce894d6@finder.org> <87o6yys7n5.fsf@mail.linkov.net> <86o6yx6i2d.fsf@gnu.org> <87msehzr3i.fsf@mail.linkov.net> MIME-Version: 1.0 Date: Wed, 19 Feb 2025 21:20:35 +0000 X-Gm-Features: AWEUYZniZLfM2jh_pSiwtEv0dQE1lGuhsFq60Uy5tbQLVmPnSOBaddcd26mBsdE Message-ID: Subject: Re: bug#76408: 29.4; read-key always returns only tab-line for click in tab-line To: Juri Linkov Content-Type: text/plain; charset="UTF-8" X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 76408 Cc: Eli Zaretskii , jared@finder.org, 76408@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: -0.3 (/) Juri Linkov writes: >>>> > I believe the following change to read-key fixes this: >>>> > >>>> > @@ -3074,7 +3074,7 @@ read-key >>>> > - (memq key '(mode-line header-line >>>> > + (memq key '(mode-line header-line tab-line >>>> >>>> Thanks for the fix. Pushed to master (I guess it's too late for release?) >>> >>> It's okay to backport this to the release branch. >> >> Please wait until after Emacs 30.1 for now. Thanks in advance. > > This means to backport to Emacs 30.2 later? Yes, please. From debbugs-submit-bounces@debbugs.gnu.org Wed Feb 26 02:25:46 2025 Received: (at 76408) by debbugs.gnu.org; 26 Feb 2025 07:25:46 +0000 Received: from localhost ([127.0.0.1]:50759 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tnBne-0003I2-2l for submit@debbugs.gnu.org; Wed, 26 Feb 2025 02:25:46 -0500 Received: from greenhill.hpalace.com ([192.155.80.58]:51476) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tnBnZ-0003Hr-A1 for 76408@debbugs.gnu.org; Wed, 26 Feb 2025 02:25:43 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=finder.org; s=2018; t=1740554739; bh=YfK4BqoltMqjJ0bmRb7Z5Gjh9PLi0CRvgFp3XpDUpw0=; h=Date:From:To:Cc:Subject:In-Reply-To:References:From; b=SzilEjv/DT5LFegkIFjlTkToLYQpMhLIJKR42eHAm4MLKBYdoLqV945NYm2f1xYhe TyKpWyGf94HOQlZ+M1+RYn4DaC21tPne9MnboQz+sBHcl4a9vcJJsCcH4OL3Y4wJIn Fyor2Kz3jFJy8dhAxsLEV/fjU0Q/4Fl7+46w38oiTn4znm26rAKT5l0Ph6pGHR0mUb y1eEzRegZh5LDsQxQj3mvsQtZ6t6yQxWmYNIfsCaXzyOhSLUJ5vP4qf4cLmj7cRY1g F9rdd/+e9AgCtAim38G/8rdC8o4SEy/FgG3hPildZHZsZgt8FyaFxTd4dpVf3SU/mF zNMIY20IH8/sw== Received: from mail.finder.org (unknown [192.155.80.58]) by greenhill.hpalace.com (Postfix) with ESMTPSA id D5C9713AF; Wed, 26 Feb 2025 07:25:39 +0000 (UTC) MIME-Version: 1.0 Date: Tue, 25 Feb 2025 23:25:39 -0800 From: Jared Finder To: Stefan Kangas Subject: Re: bug#76408: 29.4; read-key always returns only tab-line for click in tab-line In-Reply-To: References: <3df498ad51c5dd4ae85493e67ce894d6@finder.org> <87o6yys7n5.fsf@mail.linkov.net> <86o6yx6i2d.fsf@gnu.org> <87msehzr3i.fsf@mail.linkov.net> Message-ID: <560b2c004ef358ad7feaa90e601ea8e8@finder.org> X-Sender: jared@finder.org Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Score: 0.7 (/) X-Debbugs-Envelope-To: 76408 Cc: Eli Zaretskii , 76408@debbugs.gnu.org, Juri Linkov 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.3 (/) On 2025-02-19 13:20, Stefan Kangas wrote: > Juri Linkov writes: > >>>>> > I believe the following change to read-key fixes this: >>>>> > >>>>> > @@ -3074,7 +3074,7 @@ read-key >>>>> > - (memq key '(mode-line header-line >>>>> > + (memq key '(mode-line header-line tab-line >>>>> >>>>> Thanks for the fix. Pushed to master (I guess it's too late for >>>>> release?) >>>> >>>> It's okay to backport this to the release branch. >>> >>> Please wait until after Emacs 30.1 for now. Thanks in advance. >> >> This means to backport to Emacs 30.2 later? > > Yes, please. I just want to make sure this doesn't get forgotten. -- MJF From debbugs-submit-bounces@debbugs.gnu.org Thu Feb 27 14:02:31 2025 Received: (at 76408) by debbugs.gnu.org; 27 Feb 2025 19:02:31 +0000 Received: from localhost ([127.0.0.1]:37924 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1tnj9S-00071Q-CQ for submit@debbugs.gnu.org; Thu, 27 Feb 2025 14:02:31 -0500 Received: from relay1-d.mail.gandi.net ([2001:4b98:dc4:8::221]:50549) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from ) id 1tnj9Q-00070a-CZ; Thu, 27 Feb 2025 14:02:28 -0500 Received: by mail.gandi.net (Postfix) with ESMTPSA id 6636444369; Thu, 27 Feb 2025 19:02:20 +0000 (UTC) From: Juri Linkov To: Jared Finder Subject: Re: bug#76408: 29.4; read-key always returns only tab-line for click in tab-line In-Reply-To: <560b2c004ef358ad7feaa90e601ea8e8@finder.org> Organization: LINKOV.NET References: <3df498ad51c5dd4ae85493e67ce894d6@finder.org> <87o6yys7n5.fsf@mail.linkov.net> <86o6yx6i2d.fsf@gnu.org> <87msehzr3i.fsf@mail.linkov.net> <560b2c004ef358ad7feaa90e601ea8e8@finder.org> Date: Thu, 27 Feb 2025 20:59:55 +0200 Message-ID: <87tt8frz6c.fsf@mail.linkov.net> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/31.0.50 (x86_64-pc-linux-gnu) MIME-Version: 1.0 Content-Type: text/plain X-GND-State: clean X-GND-Score: -100 X-GND-Cause: gggruggvucftvghtrhhoucdtuddrgeefvddrtddtgdekkedvhecutefuodetggdotefrodftvfcurfhrohhfihhlvgemucfitefpfffkpdcuggftfghnshhusghstghrihgsvgenuceurghilhhouhhtmecufedtudenucesvcftvggtihhpihgvnhhtshculddquddttddmnecujfgurhephffvvefujghofhffkfgfgggtsehttdertddtredtnecuhfhrohhmpefluhhrihcunfhinhhkohhvuceojhhurhhisehlihhnkhhovhdrnhgvtheqnecuggftrfgrthhtvghrnhepffegteefveelhfeljeefueehieduiedtfffhuddtkeeffffghfevheetgeeukeehnecukfhppeeluddruddvledruddthedruddujeenucevlhhushhtvghrufhiiigvpedtnecurfgrrhgrmhepihhnvghtpeeluddruddvledruddthedruddujedphhgvlhhopehmrghilhdrghgrnhguihdrnhgvthdpmhgrihhlfhhrohhmpehjuhhriheslhhinhhkohhvrdhnvghtpdhnsggprhgtphhtthhopeehpdhrtghpthhtoheptghonhhtrhholhesuggvsggsuhhgshdrghhnuhdrohhrghdprhgtphhtthhopeejieegtdekseguvggssghughhsrdhgnhhurdhorhhgpdhrtghpthhtohepvghlihiisehgnhhurdhorhhgpdhrtghpthhtohepshhtvghfrghnkhgrnhhgrghssehgmhgrihhlrdgtohhmpdhrtghpthhtohepjhgrrhgvugesfhhinhguvghrrdhorhhg X-GND-Sasl: juri@linkov.net X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 76408 Cc: 76408@debbugs.gnu.org, Eli Zaretskii , Stefan Kangas 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: -1.0 (-) fixed 76408 30.1.50 thanks >>>>>> > I believe the following change to read-key fixes this: >>>>>> > >>>>>> > @@ -3074,7 +3074,7 @@ read-key >>>>>> > - (memq key '(mode-line header-line >>>>>> > + (memq key '(mode-line header-line tab-line >>>>>> Thanks for the fix. Pushed to master (I guess it's too late for >>>>>> release?) >>>>> It's okay to backport this to the release branch. >>>> Please wait until after Emacs 30.1 for now. Thanks in advance. >>> This means to backport to Emacs 30.2 later? >> Yes, please. > > I just want to make sure this doesn't get forgotten. Thanks for the reminder, now backported to emacs-30. From unknown Wed Jun 18 23:18:14 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 28 Mar 2025 11:24:07 +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