Received: (at 80607) by debbugs.gnu.org; 14 Mar 2026 11:28:56 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Mar 14 07:28:55 2026 Received: from localhost ([127.0.0.1]:53689 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1w1NAt-0001w3-0A for submit <at> debbugs.gnu.org; Sat, 14 Mar 2026 07:28:55 -0400 Received: from mail-10629.protonmail.ch ([79.135.106.29]:47647) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <pipcet@HIDDEN>) id 1w1NAo-0001uq-Vc for 80607 <at> debbugs.gnu.org; Sat, 14 Mar 2026 07:28:53 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1773487723; x=1773746923; bh=ZPjyPaVzXiO+ikM8SD6vl7tZzJbIPZN7y2SEhXztpRQ=; h=Date:To:From:Cc:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector; b=Idp9MQwBi6m6FEt+KKTJUYNLg4Z4/cfoUsLlD4iBMqVoYdWp1D3pZrqYfsDzqSaoe LYg+bpeUfNwbKmeDoraEyb1PtbXwbVlPGwGnJfgHHT9ynIsYAOc+cD52rsOeuJiXqJ YyCOuvMK8JjezqcsH5HUDUZXm5vOAuwLkj24JX3cwmFzfoeowItGMYL/BSuIw0zcNQ f3vcpdnHTqmGG+ZNORClZh8h6S+l3uvpLuKUeRavsUQGtk6qVp/mPQ+qA58VRftmlq oWVZ7dFQ/BCnww5P+4I0dCKQT6JDI9hN98cqk9b3MMTr0k5swdt+HoMh6MObZburuI ce6st+plK1OrA== Date: Sat, 14 Mar 2026 11:28:39 +0000 To: Sean Whitton <spwhitton@HIDDEN> From: Pip Cet <pipcet@HIDDEN> Subject: Re: bug#80607: 31.0.50; notmuch-search with long query crashes Wayland Message-ID: <87wlzetzsx.fsf@HIDDEN> In-Reply-To: <87y0jvlx0k.fsf@HIDDEN> References: <87y0jvlx0k.fsf@HIDDEN> Feedback-ID: 112775352:user:proton X-Pm-Message-ID: 94eac301aa622ab3c689d9dbbbf39327df2928a3 MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 1.0 (+) X-Debbugs-Envelope-To: 80607 Cc: notmuch@HIDDEN, 80607 <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: 0.0 (/) "Sean Whitton" <spwhitton@HIDDEN> writes: > X-debbugs-cc: notmuch@HIDDEN > > In 'emacs -q', after 'M-x load-library RET notmuch RET' (version 0.39) > and with a populated notmuch database, evaluating the following form > crashes Emacs and manages to bring down the entire Wayland compositor > and systemd user session: > > (notmuch-search "thread:00000000000a162e thread:00000000000a162e ..."= ) > > where "..." is the same space-separated thread:00000000000a162e repeated > until the query is around 2000 characters in length. What's your font width (for the font used by sway)? My assumption is that sway is trying to create a cairo_image_surface displaying that string, which ends up being wider than 32767 (=3D MAX_IMAGE_SIZE) pixels, and sway fails to properly handle the error: > I think this is a display engine problem. > This is my Wayland error output: > > 00:04:33.890 [ERROR] [sway/sway_text_node.c:110] cairo_image_surface_crea= te failed: invalid value (typically too big) for the size of the input (sur= face, pattern, etc.) > 00:04:33.890 [ERROR] [sway/sway_text_node.c:110] cairo_image_surface_crea= te failed: invalid value (typically too big) for the size of the input (sur= face, pattern, etc.) > sway: render/pass.c:23: wlr_render_pass_add_texture: Assertion `box->x >= =3D 0 && box->y >=3D 0 && box->x + box->width <=3D options->texture->width = && box->y + box->height <=3D options->texture->height' failed. > err: wayland.c:1617: failed to read events from the Wayland socket: Brok= en pipe > There has to be an Emacs bug here because Lisp should not be able to > crash Emacs like this. Reproducible with and without native compilation > enabled, and with Emacs 30. I agree that Emacs should not pass overly long strings to the window manager (equivalent), but the "window manager" shouldn't crash the entire Wayland session because of an overly long string provided by an application, either. Do we know where the string is passed from Emacs, so we could truncate it, and what a reasonable limit would be? My guess is this is 'pgtk_set_name_internal' in pgtkfns.c, and I'd suggest a limit of 512 characters. Would you be able to test a patch to this effect? Pip
bug-gnu-emacs@HIDDEN:bug#80607; Package emacs.
Full text available.Received: (at 80607) by debbugs.gnu.org; 13 Mar 2026 22:59:43 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Fri Mar 13 18:59:43 2026 Received: from localhost ([127.0.0.1]:48869 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1w1BTp-0008QE-DC for submit <at> debbugs.gnu.org; Fri, 13 Mar 2026 18:59:43 -0400 Received: from phubs.tethera.net ([2607:5300:60:3a9d::1]:50830) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <david@HIDDEN>) id 1w1BTk-0008PB-Rw for 80607 <at> debbugs.gnu.org; Fri, 13 Mar 2026 18:59:38 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tethera.net; i=@tethera.net; q=dns/txt; s=2024; t=1773442775; h=from : to : cc : subject : in-reply-to : references : date : message-id : mime-version : content-type : from; bh=fGpTSB+dNEfexDOQ6g70WYluVBYKoUVYmAK9ofckMxc=; b=XxSWoQaNspDJC8wO//xLeCihgLeSgGY9YBJfX2jMW2NxcjPTkA/nSJ3VYkE2Cdizy3PpF EtXx6MJCdwU9WKaiFRatl6hQskAq3rKTH+kRMpDUgySknguZCOVMs2gTcoZ38niJfuHoeRQ vWt1oUeYyKWNePdC7mXUTdA5BcykKxqN9FR8VCW7ooqgHJcG4RsRGMXh7WgUKczEzDF7XYe SWhyb8NkbCbpdLWmWYf9OFfLccnu5faFlGd5wyVeGkA7pDvr9UQVXNitGI6DBOWP9n7Bxmx I6+TEKyd11ESosSkedI//XW56jlOABu0PMEcvqTgXBy7FyREKrA1VRVKt2Uw== Received: from tethera.net (M111108027213.v4.enabler.ne.jp [111.108.27.213]) by phubs.tethera.net (Postfix) with ESMTPS id B6C9318006D; Fri, 13 Mar 2026 19:59:34 -0300 (ADT) Received: (nullmailer pid 1572285 invoked by uid 1000); Fri, 13 Mar 2026 22:59:31 -0000 From: David Bremner <david@HIDDEN> To: Sean Whitton <spwhitton@HIDDEN>, 80607 <at> debbugs.gnu.org Subject: Re: bug#80607: 31.0.50; notmuch-search with long query crashes Wayland In-Reply-To: <87y0jvlx0k.fsf@HIDDEN> References: <87y0jvlx0k.fsf@HIDDEN> Date: Sat, 14 Mar 2026 07:59:31 +0900 Message-ID: <87jyvfibe4.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 80607 Cc: notmuch@HIDDEN 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 (-) Sean Whitton <spwhitton@HIDDEN> writes: > X-debbugs-cc: notmuch@HIDDEN > > In 'emacs -q', after 'M-x load-library RET notmuch RET' (version 0.39) > and with a populated notmuch database, evaluating the following form > crashes Emacs and manages to bring down the entire Wayland compositor > and systemd user session: > > (notmuch-search "thread:00000000000a162e thread:00000000000a162e ...") > > where "..." is the same space-separated thread:00000000000a162e repeated > until the query is around 2000 characters in length. > In case anyone other than me was curious, it seems to work fine in X11, emacs 30.2, notmuch master. One observation is that notmuch rather naively generates a buffer name from the query, so it might be possible to duplicate the problem without notmuch by generating a very long buffer name (possibly followed by some operations like pop-buffer-to-same-window).
bug-gnu-emacs@HIDDEN:bug#80607; Package emacs.
Full text available.Received: (at 80607) by debbugs.gnu.org; 13 Mar 2026 14:05:59 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Fri Mar 13 10:05:59 2026 Received: from localhost ([127.0.0.1]:46141 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1w139J-00026L-Tx for submit <at> debbugs.gnu.org; Fri, 13 Mar 2026 10:05:59 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:39060) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <eliz@HIDDEN>) id 1w139G-00024e-13 for 80607 <at> debbugs.gnu.org; Fri, 13 Mar 2026 10:05:55 -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 1w1399-0005NI-7V; Fri, 13 Mar 2026 10:05:47 -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=idHERgIWDJGjkm0UrtMThnOReX59dgxFo6PMHwmsvPY=; b=Xc8QAtcMUUKU xIH9IuNc0QmDQjHv6/n0VEu22CSazUWvz27Shk734dQeJv9U7grioCWFA++gVwRJozxZyUM3xae9n 77dL0N6YEkaedQaGr3hEBD8msM3P6POOHZbsLJBqtGbE1DFGaCo7LbXMueKdfcMzny4nFRNAddwGU 9dLKo/kqh+ArIIPG9yUYK5EKLCHjfx5Zo2R0gztrFETNMXa8HKxpMEoryxwd/yS+2G1bDMU51ExaU GHfAceHeLqqeJNnvl5E7ugOOCCgxbpdm3yUNWBIejxXxdep1Abx1L0m5Hi1DTSwsQmNPMjgoQeHSh xCcsNrHNSCt2+iWUxuEgoQ==; Date: Fri, 13 Mar 2026 16:05:45 +0200 Message-Id: <86o6krddty.fsf@HIDDEN> From: Eli Zaretskii <eliz@HIDDEN> To: Sean Whitton <spwhitton@HIDDEN> In-Reply-To: <87y0jvlx0k.fsf@HIDDEN> (message from Sean Whitton on Fri, 13 Mar 2026 12:44:11 +0000) Subject: Re: bug#80607: 31.0.50; notmuch-search with long query crashes Wayland References: <87y0jvlx0k.fsf@HIDDEN> X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 80607 Cc: notmuch@HIDDEN, 80607 <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: -3.3 (---) > Cc: notmuch@HIDDEN > From: Sean Whitton <spwhitton@HIDDEN> > Date: Fri, 13 Mar 2026 12:44:11 +0000 > > In 'emacs -q', after 'M-x load-library RET notmuch RET' (version 0.39) > and with a populated notmuch database, evaluating the following form > crashes Emacs and manages to bring down the entire Wayland compositor > and systemd user session: > > (notmuch-search "thread:00000000000a162e thread:00000000000a162e ...") > > where "..." is the same space-separated thread:00000000000a162e repeated > until the query is around 2000 characters in length. > > I don't think it is command line length limits because I tried tripling > the length of the query and running it in a terminal and it completes > fine (returning the single thread as expected). > > There has to be an Emacs bug here because Lisp should not be able to > crash Emacs like this. Reproducible with and without native compilation > enabled, and with Emacs 30. > > I think this is a display engine problem. Please show a C-level backtrace to this effect. If that's not possible "the easy way" (but I wonder why), step with GDB through redisplay_internal and find the line of code which causes the crash. Thanks.
bug-gnu-emacs@HIDDEN:bug#80607; Package emacs.
Full text available.
Received: (at submit) by debbugs.gnu.org; 13 Mar 2026 12:44:34 +0000
From debbugs-submit-bounces <at> debbugs.gnu.org Fri Mar 13 08:44:33 2026
Received: from localhost ([127.0.0.1]:44866 helo=debbugs.gnu.org)
by debbugs.gnu.org with esmtp (Exim 4.84_2)
(envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>)
id 1w11sU-0007NY-7P
for submit <at> debbugs.gnu.org; Fri, 13 Mar 2026 08:44:33 -0400
Received: from lists.gnu.org ([2001:470:142::17]:53138)
by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
(Exim 4.84_2) (envelope-from <spwhitton@HIDDEN>)
id 1w11sO-0007Lc-Q8
for submit <at> debbugs.gnu.org; Fri, 13 Mar 2026 08:44:27 -0400
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 <spwhitton@HIDDEN>)
id 1w11sI-0005TW-OL
for bug-gnu-emacs@HIDDEN; Fri, 13 Mar 2026 08:44:19 -0400
Received: from sendmail.purelymail.com ([34.202.193.197])
by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256)
(Exim 4.90_1) (envelope-from <spwhitton@HIDDEN>)
id 1w11sG-00061g-D2
for bug-gnu-emacs@HIDDEN; Fri, 13 Mar 2026 08:44:18 -0400
DKIM-Signature: a=rsa-sha256;
b=SZm/A+BSrydgm12QWeU6yQjBjlFTkx+1NK2vNxnWfmBv0pNUGTHqZheZUnR/rwueUJvV3tE11b2M2qyC6clRVfVauRSCUq75f64c2uYgmuLfHpJN2K/ysp5RJFEaHN42xjsqCxSxUQ8sIAn7WQOs9IjVNpcJzrrSrk9+RglogScs8Bw+EnWW1BmYTqDT7Fg8fw6/N8QOZGqSNBFTw8AqSGxJon06XIGZOCpNNG7HS+L7KlDm2GkCXGYid/qy2qgLVkAvM1XAWhLZNqHfF7s9Fwj1JJsd1CtJLLmXNQtTE3NDfUiRo3K3iXTqpVQlp8mo/9j4KtxSfU6uPCZa+zsTSw==;
s=purelymail2; d=spwhitton.name; v=1;
bh=59jFt0t7H8cULGOfnZivZbaZzLSy+jqawyhqdvSUpos=;
h=Received:Received:From:To:Subject:Date;
DKIM-Signature: a=rsa-sha256;
b=wMCJwPC17MeriVX1ZdudLuVzyrwSTTVUOk7yEVoUlwPOiC/spDmhtlZXeuMM84x0Ok9jROOX/1UI4uXFnIBygrpUUCq3mFPPkLx20n6161iS2YBFvijPPqnybYIRbBt3p6+PRUhgynsOZU8/eIjoYIlSo6o7S7lD2M+HW/9fmHSLD3AOu03jCNK5htdbaGVdo0NPGGfMLvnYYi7AWD1m+uBKH+LeLFM/4SBYKXeUvAgydxASr1ZjiZll8KyTRh/SUizQNRuPz7bjbQKfJLofQm5izrXx14VIcDvoW7xnaUlQgYQqHqMug0G3XWTm6ZgNbXJTMsHefQnpuKIO/MPowA==;
s=purelymail2; d=purelymail.com; v=1;
bh=59jFt0t7H8cULGOfnZivZbaZzLSy+jqawyhqdvSUpos=;
h=Feedback-ID:Received:Received:From:To:Subject:Date;
Feedback-ID: 20115:3760:null:purelymail
X-Pm-Original-To: bug-gnu-emacs@HIDDEN
Received: by smtp.purelymail.com (Purelymail SMTP) with ESMTPSA id -891679002
for <bug-gnu-emacs@HIDDEN>
(version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384);
Fri, 13 Mar 2026 12:44:14 +0000 (UTC)
Received: by melete.silentflame.com (Postfix, from userid 1000)
id 0D4B67E6C4F; Fri, 13 Mar 2026 12:44:12 +0000 (GMT)
From: Sean Whitton <spwhitton@HIDDEN>
To: bug-gnu-emacs@HIDDEN
Subject: 31.0.50; notmuch-search with long query crashes Wayland
Date: Fri, 13 Mar 2026 12:44:11 +0000
Message-ID: <87y0jvlx0k.fsf@HIDDEN>
MIME-Version: 1.0
Content-Type: text/plain
Received-SPF: pass client-ip=34.202.193.197;
envelope-from=spwhitton@HIDDEN; helo=sendmail.purelymail.com
X-Spam_score_int: -3
X-Spam_score: -0.4
X-Spam_bar: /
X-Spam_report: (-0.4 / 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.819, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.903,
SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no
X-Spam_action: no action
X-Spam-Score: 1.0 (+)
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.0 (/)
X-debbugs-cc: notmuch@HIDDEN
In 'emacs -q', after 'M-x load-library RET notmuch RET' (version 0.39)
and with a populated notmuch database, evaluating the following form
crashes Emacs and manages to bring down the entire Wayland compositor
and systemd user session:
(notmuch-search "thread:00000000000a162e thread:00000000000a162e ...")
where "..." is the same space-separated thread:00000000000a162e repeated
until the query is around 2000 characters in length.
I don't think it is command line length limits because I tried tripling
the length of the query and running it in a terminal and it completes
fine (returning the single thread as expected).
There has to be an Emacs bug here because Lisp should not be able to
crash Emacs like this. Reproducible with and without native compilation
enabled, and with Emacs 30.
I think this is a display engine problem.
This is my Wayland error output:
00:04:33.890 [ERROR] [sway/sway_text_node.c:110] cairo_image_surface_create failed: invalid value (typically too big) for the size of the input (surface, pattern, etc.)
00:04:33.890 [ERROR] [sway/sway_text_node.c:110] cairo_image_surface_create failed: invalid value (typically too big) for the size of the input (surface, pattern, etc.)
sway: render/pass.c:23: wlr_render_pass_add_texture: Assertion `box->x >= 0 && box->y >= 0 && box->x + box->width <= options->texture->width && box->y + box->height <= options->texture->height' failed.
err: wayland.c:1617: failed to read events from the Wayland socket: Broken pipe
Gdk-Message: 12:40:52.454: Error reading events from display: Broken pipe
I2026-03-13 12:40:52.454856 waylandmodule.cpp:360] Connection removed
Gdk-Message: 12:40:52.454: Error reading events from display: Broken pipe
W2026-03-13 12:40:52.458044 xcbeventreader.cpp:51] XCB connection ":0" got error: 1
Gdk-Message: 12:40:52.458: Error reading events from display: Broken pipe
could not connect to wayland server
I(EE)
Fatal server error:
(EE) Couldn't add screen
(EE)
2026-03-13 12:40:52.465323 addonmanager.cpp:308] Unloading addon mozc
I2026-03-13 12:40:52.465433 addonmanager.cpp:308] Unloading addon notifications
I2026-03-13 12:40:52.465471 addonmanager.cpp: err: 308wayland.c:2253: ] failed to roundtrip Wayland displayUnloading addon notificationitem
: Broken pipe
err: wayland.c:2253: failed to roundtrip Wayland display: Broken pipe
err: wayland.c:2253: failed to roundtrip Wayland display: Broken pipe
I2026-03-13 12:40:52.465540 addonmanager.cpp:308] Unloading addon classicui
I2026-03-13 12:40:52.466317 addonmanager.cpp:308] Unloading addon virtualkeyboard
I2026-03-13 12:40:52.466342 addonmanager.cpp:308] Unloading addon kimpanel
I2026-03-13 12:40:52.466360 addonmanager.cpp:308] Unloading addon xim
I2026-03-13 12:40:52.466377 addonmanager.cpp:308] Unloading addon dbusfrontend
I2026-03-13 12:40:52.466411 addonmanager.cpp:308] Unloading addon unicode
I2026-03-13 12:40:52.466428 addonmanager.cpp:308] Unloading addon imeapi
I2026-03-13 12:40:52.466518 addonmanager.cpp:308] Unloading addon ibusfrontend
warn: terminal.c:2015: slave exited with signal 1 (Hangup)
I2026-03-13 12:40:52.473885 addonmanager.cpp:308] Unloading addon fcitx4frontend
I2026-03-13 12:40:52.473990 addonmanager.cpp:308] Unloading addon dbus
I2026-03-13 12:40:52.474076 addonmanager.cpp:308] Unloading addon luaaddonloader
I2026-03-13 12:40:52.474108 addonmanager.cpp:308] Unloading addon pinyinhelper
I2026-03-13 12:40:52.474142 addonmanager.cpp:308] Unloading addon clipboard
I2026-03-13 12:40:52.474187 addonmanager.cpp:308] Unloading addon keyboard
I2026-03-13 12:40:52.474270 addonmanager.cpp:308] Unloading addon waylandim
I2026-03-13 12:40:52.474300 addonmanager.cpp:308] Unloading addon wayland
I2026-03-13 12:40:52.474331 addonmanager.cpp:308] Unloading addon quickphrase
I2026-03-13 12:40:52.474540 addonmanager.cpp:308] Unloading addon imselector
I2026-03-13 12:40:52.474561 addonmanager.cpp:308] Unloading addon xcb
err: wayland.c:2218: failed to flush wayland socket: Broken pipe
Error: Wayland connection experienced a fatal error: -1
Error: Temperature adjustment failed.
--
Sean Whitton
Sean Whitton <spwhitton@HIDDEN>:notmuch@HIDDEN, bug-gnu-emacs@HIDDEN.
Full text available.notmuch@HIDDEN, bug-gnu-emacs@HIDDEN:bug#80607; Package emacs.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.