Received: (at 81560) by debbugs.gnu.org; 6 Aug 2026 11:01:14 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Thu Aug 06 07:01:14 2026
Received: from localhost ([127.0.0.1]:33402 helo=debbugs.gnu.org)
by debbugs.gnu.org with esmtp (Exim 4.84_2)
(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
id 1wrvqb-0000b4-Q2
for submit <at> debbugs.gnu.org; Thu, 06 Aug 2026 07:01:14 -0400
Received: from server.qxqx.de ([2a01:4f8:c012:9177::1]:43527 helo=mail.qxqx.de)
by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
(Exim 4.84_2) (envelope-from <mail@HIDDEN>)
id 1wrvqY-0000ap-Ew
for 81560 <at> debbugs.gnu.org; Thu, 06 Aug 2026 07:01:12 -0400
DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed;
d=daniel-mendler.de; s=key; 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=8FUq0F2f0YEfULTAx6eSHwLb6oyGCnUqz6SM/VRVFiA=; b=zYxnMfPCPgsilqxUz52SS29R7c
pRUx2z9K7jDwW4bMeiYYNipgHM02SiaJdptfMWVOEnGZDVB3LWvjymD66UF8U1fxgpMvItYdeFVPL
xVkEPpxjWOTT7vM5jm5SvomTmpRT/AHrhexrf28t7bOjzum/NGJvgeInivadgisYaAVw=;
From: Daniel Mendler <mail@HIDDEN>
To: Eli Zaretskii <eliz@HIDDEN>
Subject: Re: bug#81560: 31.0.91; dframe-update-speed specifies :type integer
In-Reply-To: <86v79n6f8x.fsf@HIDDEN>
References: <87ldakbmlp.fsf@HIDDEN> <86zez05zf7.fsf@HIDDEN>
<87fr0sjx6y.fsf@HIDDEN> <86v79n6f8x.fsf@HIDDEN>
Date: Thu, 06 Aug 2026 13:01:03 +0200
Message-ID: <87a4qztswg.fsf@HIDDEN>
User-Agent: Gnus/5.13 (Gnus v5.13)
MIME-Version: 1.0
Content-Type: text/plain
X-Spam-Score: -0.0 (/)
X-Debbugs-Envelope-To: 81560
Cc: 81560 <at> debbugs.gnu.org
X-BeenThere: debbugs-submit <at> debbugs.gnu.org
X-Mailman-Version: 2.1.18
Precedence: list
List-Id: <debbugs-submit.debbugs.gnu.org>
List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>,
<mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe>
List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/>
List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org>
List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help>
List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>,
<mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe>
Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org
Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org>
X-Spam-Score: -1.0 (-)
Eli Zaretskii <eliz@HIDDEN> writes:
>> From: Daniel Mendler <mail@HIDDEN>
>> Cc: 81560 <at> debbugs.gnu.org
>> Date: Wed, 05 Aug 2026 19:26:13 +0200
>>
>> Eli Zaretskii <eliz@HIDDEN> writes:
>>
>> >> Date: Wed, 05 Aug 2026 17:42:10 +0200
>> >> From: Daniel Mendler via "Bug reports for GNU Emacs,
>> >> the Swiss army knife of text editors" <bug-gnu-emacs@HIDDEN>
>> >>
>> >> The speedbar uses the customizable variable `dframe-update-speed' to
>> >> check for updates. This variable has variable :type `integer' but
>> >> shorter delays are supported, e.g., 0.5. I suggest to change the
>> >> variable :type to `number'.
>> >
>> > Actually, 'number' is also inaccurate: the value can be in the format
>> > of the value returned by current-idle-time, because the value is
>> > passed to run-with-idle-timer.
>>
>> So is there a type which you think is appropriate?
>
> If we change no other code, then perhaps allowing a list of
> appropriate lengths in addition to a number? IOW, a custom validation
> function.
I think the type number is appropriate. There are plenty of examples...
(defcustom eldoc-idle-delay 0.50
"Number of seconds of idle time to wait before displaying documentation.
If user input arrives before this interval of time has elapsed after the
last input event, no documentation will be displayed.
If this variable is set to 0, display the documentation without any delay."
:type 'number)
(defcustom show-paren-delay 0.125
"Time in seconds to delay before showing a matching paren.
If you change this without using customize while `show-paren-mode' is
active, you must toggle the mode off and on again for this to take effect."
:type '(number :tag "seconds")
:initialize 'custom-initialize-default
:set (lambda (sym val)
(if (not show-paren-mode)
(set sym val)
(show-paren-mode -1)
(set sym val)
(show-paren-mode 1))))
(defcustom blink-cursor-delay 0.5
"Seconds of idle time before the first blink of the cursor.
Values smaller than 0.2 sec are treated as 0.2 sec."
:type 'number
:group 'cursor
:set (lambda (symbol value)
(set-default symbol value)
(when blink-cursor-idle-timer (blink-cursor--start-idle-timer))))
(defcustom blink-cursor-interval 0.5
"Length of cursor blink interval in seconds."
:type 'number
:group 'cursor
:set (lambda (symbol value)
(set-default symbol value)
(when blink-cursor-timer (blink-cursor--start-timer))))
(defcustom tooltip-delay 0.7
"Seconds to wait before displaying a tooltip the first time."
:type 'number)
Daniel
bug-gnu-emacs@HIDDEN:bug#81560; Package emacs.
Full text available.Received: (at 81560) by debbugs.gnu.org; 6 Aug 2026 04:32:29 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Aug 06 00:32:29 2026 Received: from localhost ([127.0.0.1]:58779 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1wrpmO-0000Gb-Uj for submit <at> debbugs.gnu.org; Thu, 06 Aug 2026 00:32:29 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:55128) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <eliz@HIDDEN>) id 1wrpmJ-0000G6-Gj for 81560 <at> debbugs.gnu.org; Thu, 06 Aug 2026 00:32:24 -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 <eliz@HIDDEN>) id 1wrpmD-00044G-Kc; Thu, 06 Aug 2026 00:32:17 -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=MOL1cSRKswJGFvHJpYxLVF5eLA3AUzk3VpAb2BZWNKw=; b=AkMMkevRG372 9e9Ho7BH3BqXL2UD2R7O9htsIrM71mB6fPQeCkD/l2OBFwoVwXKlAlWnmoROMr410v+hl/yd7gdvC hjQSBBMwE19Jc0xiFaH5Qrju4ZXjMZybCDmmX6P0a08OnYut/6RmfclUgyage40CzV+FqtoPKybBB Q+s0JdGHNZCo4sgXHPTmrIy1KdCKfOiGp8GNYZ8BQaQik6HpCAJy1WobhdNvnpE+xb9q7q5o70wjt brLTKnWBS6vWH2QTskRnCFCKLbBFQjY1E3g+cYADjEiBR3gY8ySgHPSAU+5sazEJaq0NkuWCCN/I9 ImJb5UgNJbFQXGOO/RSn0g==; Date: Thu, 06 Aug 2026 07:32:14 +0300 Message-Id: <86v79n6f8x.fsf@HIDDEN> From: Eli Zaretskii <eliz@HIDDEN> To: Daniel Mendler <mail@HIDDEN> In-Reply-To: <87fr0sjx6y.fsf@HIDDEN> (message from Daniel Mendler on Wed, 05 Aug 2026 19:26:13 +0200) Subject: Re: bug#81560: 31.0.91; dframe-update-speed specifies :type integer References: <87ldakbmlp.fsf@HIDDEN> <86zez05zf7.fsf@HIDDEN> <87fr0sjx6y.fsf@HIDDEN> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 81560 Cc: 81560 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.7 (-) > From: Daniel Mendler <mail@HIDDEN> > Cc: 81560 <at> debbugs.gnu.org > Date: Wed, 05 Aug 2026 19:26:13 +0200 > > Eli Zaretskii <eliz@HIDDEN> writes: > > >> Date: Wed, 05 Aug 2026 17:42:10 +0200 > >> From: Daniel Mendler via "Bug reports for GNU Emacs, > >> the Swiss army knife of text editors" <bug-gnu-emacs@HIDDEN> > >> > >> The speedbar uses the customizable variable `dframe-update-speed' to > >> check for updates. This variable has variable :type `integer' but > >> shorter delays are supported, e.g., 0.5. I suggest to change the > >> variable :type to `number'. > > > > Actually, 'number' is also inaccurate: the value can be in the format > > of the value returned by current-idle-time, because the value is > > passed to run-with-idle-timer. > > So is there a type which you think is appropriate? If we change no other code, then perhaps allowing a list of appropriate lengths in addition to a number? IOW, a custom validation function. > What do we use for other delays? I didn't yet have time to look, sorry.
bug-gnu-emacs@HIDDEN:bug#81560; Package emacs.
Full text available.Received: (at 81560) by debbugs.gnu.org; 5 Aug 2026 17:26:24 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Aug 05 13:26:24 2026 Received: from localhost ([127.0.0.1]:53172 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1wrfNo-0006kQ-C7 for submit <at> debbugs.gnu.org; Wed, 05 Aug 2026 13:26:24 -0400 Received: from server.qxqx.de ([2a01:4f8:c012:9177::1]:46393 helo=mail.qxqx.de) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <mail@HIDDEN>) id 1wrfNk-0006k4-Tm for 81560 <at> debbugs.gnu.org; Wed, 05 Aug 2026 13:26:22 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=daniel-mendler.de; s=key; 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=402wCe8gFn1MSbzBmYYWLg/gcVAM6+Zt+urk/EaWIz8=; b=sWcbRS61X6dG8y0Tidx6oCW0+Q d4fLARABRs9eFeLjaNSYw+iUCWuPmQhohdVeC96YtDbzrB5GVkGQ5fil/mDRROXShk1OBBhUKBKaZ Fdzf6JHRL5Oucj27TL9rSQg4u0C0MyBgXsVoCgOBTf1PSZ3TgSC9TeBvnXzzPDzN8pvs=; From: Daniel Mendler <mail@HIDDEN> To: Eli Zaretskii <eliz@HIDDEN> Subject: Re: bug#81560: 31.0.91; dframe-update-speed specifies :type integer In-Reply-To: <86zez05zf7.fsf@HIDDEN> References: <87ldakbmlp.fsf@HIDDEN> <86zez05zf7.fsf@HIDDEN> Date: Wed, 05 Aug 2026 19:26:13 +0200 Message-ID: <87fr0sjx6y.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 81560 Cc: 81560 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) Eli Zaretskii <eliz@HIDDEN> writes: >> Date: Wed, 05 Aug 2026 17:42:10 +0200 >> From: Daniel Mendler via "Bug reports for GNU Emacs, >> the Swiss army knife of text editors" <bug-gnu-emacs@HIDDEN> >> >> The speedbar uses the customizable variable `dframe-update-speed' to >> check for updates. This variable has variable :type `integer' but >> shorter delays are supported, e.g., 0.5. I suggest to change the >> variable :type to `number'. > > Actually, 'number' is also inaccurate: the value can be in the format > of the value returned by current-idle-time, because the value is > passed to run-with-idle-timer. So is there a type which you think is appropriate? What do we use for other delays? In my packages I usually use `number' iirc.
bug-gnu-emacs@HIDDEN:bug#81560; Package emacs.
Full text available.Received: (at 81560) by debbugs.gnu.org; 5 Aug 2026 16:02:00 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Aug 05 12:02:00 2026 Received: from localhost ([127.0.0.1]:52364 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1wre48-0000pX-Bf for submit <at> debbugs.gnu.org; Wed, 05 Aug 2026 12:02:00 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:49004) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <eliz@HIDDEN>) id 1wre45-0000p4-Ho for 81560 <at> debbugs.gnu.org; Wed, 05 Aug 2026 12:01:57 -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 <eliz@HIDDEN>) id 1wre3y-0004Zw-VE; Wed, 05 Aug 2026 12:01:50 -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=TpYQ0oJLZ8Q/HKfPMjfY14fZJIKb2XnnDcGoXi4uGNA=; b=GPgvtCcAcQrD q7Vj9uJ6Q3U7TywC4DBa1p0eSZlqw7tZZ8PaA6g9s48Ui7OPJajvmr0kqU88piIBPkzDUErqMTNP5 bxuUBWjqLal6rW42SsCz+v9F/sVGyrsyrTM98XP1UBDcfVtyzct1b4XGwgLMhBWP/onbzMW40RIzJ cko9sPYUq/gDMFOKz5zvAJrC3IeBB5eAuJIQvFe1nlx34Z4yLGN49KViij9Tg18f6JD1J65eEZxvQ Gh8BGJTwnleENcD6zFJoDjlPR7r+kUkD/B/8BM8ZXUnNSZPRjt8C7n3NGEqWZMh3DrkaMsu/x21pI v6CzrBeNJVN+PHnk8xn/xg==; Date: Wed, 05 Aug 2026 19:01:48 +0300 Message-Id: <86zez05zf7.fsf@HIDDEN> From: Eli Zaretskii <eliz@HIDDEN> To: Daniel Mendler <mail@HIDDEN> In-Reply-To: <87ldakbmlp.fsf@HIDDEN> (bug-gnu-emacs@HIDDEN) Subject: Re: bug#81560: 31.0.91; dframe-update-speed specifies :type integer References: <87ldakbmlp.fsf@HIDDEN> X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 81560 Cc: 81560 <at> debbugs.gnu.org X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.7 (-) > Date: Wed, 05 Aug 2026 17:42:10 +0200 > From: Daniel Mendler via "Bug reports for GNU Emacs, > the Swiss army knife of text editors" <bug-gnu-emacs@HIDDEN> > > The speedbar uses the customizable variable `dframe-update-speed' to > check for updates. This variable has variable :type `integer' but > shorter delays are supported, e.g., 0.5. I suggest to change the > variable :type to `number'. Actually, 'number' is also inaccurate: the value can be in the format of the value returned by current-idle-time, because the value is passed to run-with-idle-timer.
bug-gnu-emacs@HIDDEN:bug#81560; Package emacs.
Full text available.Received: (at submit) by debbugs.gnu.org; 5 Aug 2026 15:42:24 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Wed Aug 05 11:42:24 2026 Received: from localhost ([127.0.0.1]:52181 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1wrdlA-000838-FG for submit <at> debbugs.gnu.org; Wed, 05 Aug 2026 11:42:24 -0400 Received: from lists1p.gnu.org ([2001:470:142::17]:59062) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <mail@HIDDEN>) id 1wrdl8-00082c-Q9 for submit <at> debbugs.gnu.org; Wed, 05 Aug 2026 11:42:23 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists1p.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <mail@HIDDEN>) id 1wrdl0-0003Xi-9G for bug-gnu-emacs@HIDDEN; Wed, 05 Aug 2026 11:42:14 -0400 Received: from server.qxqx.de ([2a01:4f8:c012:9177::1] helo=mail.qxqx.de) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <mail@HIDDEN>) id 1wrdky-0001Hs-TD for bug-gnu-emacs@HIDDEN; Wed, 05 Aug 2026 11:42:14 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=daniel-mendler.de; s=key; h=Content-Type:MIME-Version:Message-ID:Date: Subject:To:From:Sender:Reply-To:Cc: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=JhBHzvMb+C2wJJUaBh5cyS42DRELfZiv0x7B9zzB+qg=; b=goSTh84SbvmYHNlB4x0iNInLXm S9298UgLvYa4iQczqTJqroYcdZIBQ1/ibY3h3MQEm0NqwQnefrpj11tma4Jwf6tj9paY45LNJZBjz vArwKufShpKFrnLLXR5uLQQqW2jy2LbX9+PJ4B6XNHraK0usThc/qa9xZ9Pn7NKw40wY=; From: Daniel Mendler <mail@HIDDEN> To: bug-gnu-emacs@HIDDEN Subject: 31.0.91; dframe-update-speed specifies :type integer X-Debbugs-Cc: Date: Wed, 05 Aug 2026 17:42:10 +0200 Message-ID: <87ldakbmlp.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=2a01:4f8:c012:9177::1; envelope-from=mail@HIDDEN; helo=mail.qxqx.de 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 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 0.9 (/) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -0.1 (/) The speedbar uses the customizable variable `dframe-update-speed' to check for updates. This variable has variable :type `integer' but shorter delays are supported, e.g., 0.5. I suggest to change the variable :type to `number'. In GNU Emacs 31.0.91 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.49, cairo version 1.18.4) of 2026-07-30 Windowing system distributor 'The X.Org Foundation', version 11.0.12101016 System Description: Debian GNU/Linux 13 (trixie) Configured using: 'configure --prefix=$HOME/.local/share/emacs-install --without-compress-install --with-tree-sitter=ifavailable --with-native-compilation --with-dbus --without-selinux --without-threads --disable-gc-mark-trace --without-gsettings --without-gpm --with-cairo --with-cairo-xcb --with-xinput2 --with-x-toolkit=gtk3 --without-toolkit-scroll-bars 'CFLAGS=-O3 -mtune=native -march=native'' Configured features: CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS HARFBUZZ JPEG LIBOTF LIBSYSTEMD LIBXML2 MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SOUND SQLITE3 TIFF TREE_SITTER WEBP X11 XCOMPOSITE XDBE XFIXES XIM XINERAMA XINPUT2 XPM XRANDR XRENDER XSHAPE XSYNC GTK3 ZLIB
Daniel Mendler <mail@HIDDEN>:bug-gnu-emacs@HIDDEN.
Full text available.bug-gnu-emacs@HIDDEN:bug#81560; Package emacs.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.