Received: (at 76847) by debbugs.gnu.org; 8 Mar 2025 09:58:55 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Sat Mar 08 04:58:55 2025 Received: from localhost ([127.0.0.1]:52920 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tqqxK-0005bV-Nu for submit <at> debbugs.gnu.org; Sat, 08 Mar 2025 04:58:55 -0500 Received: from mail-40131.protonmail.ch ([185.70.40.131]:16119) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <pipcet@HIDDEN>) id 1tqqxI-0005bF-5j for 76847 <at> debbugs.gnu.org; Sat, 08 Mar 2025 04:58:52 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonmail.com; s=protonmail3; t=1741427925; x=1741687125; bh=QNSSgJLKQBr7TsceWJXcIHOwNbA39A+fgG9YeSIWYLE=; h=Date:To:From:Subject:Message-ID:In-Reply-To:References: Feedback-ID:From:To:Cc:Date:Subject:Reply-To:Feedback-ID: Message-ID:BIMI-Selector:List-Unsubscribe:List-Unsubscribe-Post; b=U4CDTML4lyZHF0FAM7yE0FMzwdjClAFcT8EfJfeZKAJ0FT5puDw/EzYCA2EYbecqI 2ZkB5CLKQhm6NhpA+rDKhvMnyf2cof6warEmDTRsmJYz7NIhpfkybAXJQJJOlughq1 7SQ0c7uUWZopYmausHX5K2KFmaVYJxFWokHbvf3NtxLJ4d/79qzW58TE2LLJyMDRpS s9VAf1T3W3+AmsatD8Yv2EgxujqfYtMBd35QRHDBrikM72c6DfGicbl8FMhsQfXcSg HEeE1iBJls5ejvApk8rQuvMtJizYxrR9/0XxMdL2JInQeoRC9nZ6sMzDIZa3pzwUMJ mc3SzVspOi5HQ== Date: Sat, 08 Mar 2025 09:58:41 +0000 To: 76847 <at> debbugs.gnu.org, Gregor Zattler <telegraph@HIDDEN> From: Pip Cet <pipcet@HIDDEN> Subject: Re: bug#76847: 31.0.50; feature/igc: Breakpoint 1, terminate_due_to_signal (sig=sig@entry=11, backtrace_limit=backtrace_limit@entry=40) at ./src/emacs.c:425 Message-ID: <87o6yb7sjy.fsf@HIDDEN> In-Reply-To: <87cyes4fxh.fsf@HIDDEN> References: <87cyes4fxh.fsf@HIDDEN> Feedback-ID: 112775352:user:proton X-Pm-Message-ID: e9bd4cb7552d5400afc84b96976126bc758a4e0a MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 76847 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 (-) "Gregor Zattler via \"Bug reports for GNU Emacs, the Swiss army knife of te= xt editors\"" <bug-gnu-emacs@HIDDEN> writes: > Dear Emacs developers, I just typed into > an email reply when Emacs stopped > working. Thanks for the report! Just to confirm, you're using https://www.emacswiki.org/emacs/download/key-chord.el ? I believe this is due to the very strange memory management in current_minor_maps. This should have prevented the crash, but I can't properly test it right now. It also changes behavior when running out of memory, but I don't think that's a real issue with MPS. diff --git a/src/keymap.c b/src/keymap.c index bc731c54ef0..43979bed905 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -53,6 +53,7 @@ #include "intervals.h" #include "keymap.h" #include "window.h" +#include "igc.h" =20 /* Actually allocate storage for these variables. */ =20 @@ -1588,26 +1589,42 @@ current_minor_maps (Lisp_Object **modeptr, Lisp_Obj= ect **mapptr) =09=09/* Use malloc here. See the comment above this function. =09=09 Avoid realloc here; it causes spurious traps on GNU/Linux [KFS] *= / =09=09block_input (); +#ifdef HAVE_MPS +=09=09newmodes =3D igc_xzalloc_ambig (allocsize); +#else =09=09newmodes =3D malloc (allocsize); +#endif =09=09if (newmodes) =09=09 { =09=09 if (cmm_modes) =09=09 { =09=09=09memcpy (newmodes, cmm_modes, =09=09=09=09cmm_size * sizeof cmm_modes[0]); +#ifdef HAVE_MPS +=09=09=09igc_xfree (cmm_modes); +#else =09=09=09free (cmm_modes); +#endif =09=09 } =09=09 cmm_modes =3D newmodes; =09=09 } =20 +#ifdef HAVE_MPS +=09=09newmaps =3D igc_xzalloc_ambig (allocsize); +#else =09=09newmaps =3D malloc (allocsize); +#endif =09=09if (newmaps) =09=09 { =09=09 if (cmm_maps) =09=09 { =09=09=09memcpy (newmaps, cmm_maps, =09=09=09=09cmm_size * sizeof cmm_maps[0]); +#ifdef HAVE_MPS +=09=09=09igc_xfree (cmm_maps); +#else =09=09=09free (cmm_maps); +#endif =09=09 } =09=09 cmm_maps =3D newmaps; =09=09 } Thanks again! Pip
bug-gnu-emacs@HIDDEN
:bug#76847
; Package emacs
.
Full text available.Received: (at submit) by debbugs.gnu.org; 7 Mar 2025 22:47:48 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Fri Mar 07 17:47:48 2025 Received: from localhost ([127.0.0.1]:51031 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1tqgTq-00088p-Uc for submit <at> debbugs.gnu.org; Fri, 07 Mar 2025 17:47:48 -0500 Received: from lists.gnu.org ([2001:470:142::17]:43010) by debbugs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.84_2) (envelope-from <telegraph@HIDDEN>) id 1tqgTm-00088Y-Rg for submit <at> debbugs.gnu.org; Fri, 07 Mar 2025 17:47:44 -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 <telegraph@HIDDEN>) id 1tqgTf-0006AV-HC for bug-gnu-emacs@HIDDEN; Fri, 07 Mar 2025 17:47:35 -0500 Received: from mout.gmx.net ([212.227.17.20]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <telegraph@HIDDEN>) id 1tqgTZ-0007Qq-0v for bug-gnu-emacs@HIDDEN; Fri, 07 Mar 2025 17:47:35 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmx.net; s=s31663417; t=1741387646; x=1741992446; i=telegraph@HIDDEN; bh=naygL4Ox/7AHHFl98bbS4j2MLOZIxJ2Ilm8QczhoA2g=; h=X-UI-Sender-Class:From:To:Subject:Date:Message-ID:MIME-Version: Content-Type:Content-Transfer-Encoding:cc: content-transfer-encoding:content-type:date:from:message-id: mime-version:reply-to:subject:to; b=nrRMLKHnhGLtNUAcWoEEHsqBStVHKa53UXyKr0E2Zah90aNOX+8QZiuRS7i9A5kx WxpHDeNo5vckaZLtVOhwo7ktmD3eXcm0Hr1YQnNMk6IRevkgqR/Es1NmzH1NkBIIt kIM5guPtubBeHS7JfRfBDtrgFVqWHQ+S1p7FHSZrybpThUcTiSq3sN0d+jrvJNjUK eljskCghSCEMKYAigZ2kzqYRG0KWEn+Z3meTdEdnIsJx78SwgpI18NjnDRbcjgvRe GyVDzYkvTJug7gZuJHNfrqCr+o8qKNbrrVu/vGqk7SpAZjjxx1w90sqYl8FXqLrmM j/Hbhb39GtB8fQIwHA== X-UI-Sender-Class: 724b4f7f-cbec-4199-ad4e-598c01a50d3a Received: from localhost ([95.90.236.208]) by mail.gmx.net (mrgmx104 [212.227.17.168]) with ESMTPSA (Nemesis) id 1MFsYx-1u1uKo3pIl-00EcOL; Fri, 07 Mar 2025 23:47:26 +0100 From: Gregor Zattler <telegraph@HIDDEN> To: bug-gnu-emacs@HIDDEN Subject: 31.0.50; feature/igc: Breakpoint 1, terminate_due_to_signal (sig=sig@entry=11, backtrace_limit=backtrace_limit@entry=40) at ./src/emacs.c:425 X-Debbugs-Cc: Date: Fri, 07 Mar 2025 23:46:50 +0100 Message-ID: <87cyes4fxh.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain X-Provags-ID: V03:K1:ukc6T/Ps9SgMyidd9t/YRozMt4r/RzpPSt8lKilDjOfIXu8tYrA pRH8l9ga7nVUQ/bTn6xtZdm5W5A1LPN4/Ce1eUNvENvHnBmopj5CzA3ACBtetmyu3g0raSK GWVHCa9I/zT9WARwChCsuwYAubw+MeNZOAoPnTrBn8i4G/YGSwr75rJn0rfZUmU4nO4lrQZ s2Y8UJXSbAT9OIejjvdVQ== X-Spam-Flag: NO UI-OutboundReport: notjunk:1;M01:P0:t3ECowVaFfU=;UdgQmpGpubIbYalBW6fFzvbyZoi fz+mclk4WEEXXvCa4y6662UPSq4swtW6B8ZWh4EpDyVknqCIBsA7o51jmPMUUFV7oodHGQ2uv Lig4l9XeQdRjN4pUmNk/CBQwVATv/rxVu0xDfnMICUsFJmFykO2SePWNqnrjnGN//8vaGac4a /0eamDzJdgrFEb0GulAW/sojcQ+GDir2a2h7m4II6QbPz/OGuqnDTpslnDgTA5E0RTikgcOWv kCyv8BiMByZsbyfSbkci5GsnC53FFWMc/Xfw7Ja8sjM870MKtc5jwIA9Sjrx33z9jyxfGgBRG qYV7/jl4MbUyk4Cv9io5EFO0H3I7BbLkN2XblwR6ff0tp98FKoomTE1S+5DHLhxRhJ+twOpIr Up6xmOhcnZKpE0Krdq4tYP/zQAewmueJJswceTObjEVJbJ8E5lR3iMFeoZot5WU3zcfo9WyTQ QjbQw3vv6PYqs6e68PNUdvYqlzywjvn0qBMUJJuf3QOHTOWhf6XbZ80ThTp77HLYAgIYjH86E V4q2bRIQK4aihk5t8SFDTWd6IwB2wt1YMO5MY1uq28a5JHn8UQ5yLw8A4MmmKUxoqKEV6ig8P Ucs5WBBMuX7pBqTq7UR+PQWDQK/KLIhbBPlmb5owH2/wROr+maYE+M+5EITWH5QiXc8/zGcMA 9Un0Ya4TdY0ku69wIbqOYNvz43o+2pq2Y/NIf6Qo/GlzxeKbsUOgUMpOTOwDR925g5LI7PQq+ WwIAGXxxAtJFcRdS9GMcf5fSbGSHyV/0d2AUSAmpTPqvWwTHRSumCzTvkPmrE3VW3N90sBHJP 1SVHwuz1J9DEPEDWdJYFQHUL5uH5y8h4FqLCo6fybmKk0Z0c57htQBblvjSHGS5XzlAv0pkTP 6/LeFQ+QZqy4+3Tu0iRq9ReMfMUxBVvB1dsJQKgB0MU3FsL9w7b8Ia4f2GQTNOQSEBtpvV1wb 4nU34buiQSut2sKEATAYk57Nmf1hfXNpJp6BUEZAD1JHNqhdA9Yqr9Za6UJH1XxypDuO3K15q /TeWVxyizc6ERK7jPJ23MW2WIZWh5LqgMS2Z9Nu33C/h6QE3NNaSxULtnqRB1DJfTDGjquLg8 bA4NSJnOcPHnIVx+TKsMlj2lXoydOMHcNh2Vk1HnF6205UGXd/vp/v8MrkJ5NwvHyNXVNUoID 76l8x5wrDTWw1aHHhaBz/XnMC2I+M1HliVBn5Ydd8Fwlyk8JGMSurneBZN+mNSaojbxg28pwD lFc5YTlJ18XCqEOMowHRcjj1k+XPteBC60rWsDtA1Om0LoAEEmvU65hACE3J7MWBP3+VToALq Jm4bNcfHiM6K6ohldrmsr7WcXEOwl1KkJXQR3Zr8zwMtASYX5qrjytyjXL8ZEc7/hQ8dXVn5r zJ1CsJ8VocXf7qNlhy7k2gcebbS7CCmK+XLqCxJtANuPc1gB0HyPlpgnGA Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=212.227.17.20; envelope-from=telegraph@HIDDEN; helo=mout.gmx.net X-Spam_score_int: 5 X-Spam_score: 0.5 X-Spam_bar: / X-Spam_report: (0.5 / 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, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7, RCVD_IN_MSPIKE_H3=0.001, RCVD_IN_MSPIKE_WL=0.001, RCVD_IN_SBL_CSS=3.335, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: 3.6 (+++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Dear Emacs developers, I just typed into an email reply when Emacs stopped working. Infos regarding this Emacs binary and the GDB output below. The GDB session is still running on this laptop. Content analysis details: (3.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- 3.6 RCVD_IN_SBL_CSS RBL: Received via a relay in Spamhaus SBL-CSS [95.90.236.208 listed in zen.spamhaus.org] -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [2001:470:142:0:0:0:0:17 listed in] [list.dnswl.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (telegraph[at]gmx.net) 0.0 T_SPF_PERMERROR SPF: test of record failed (permerror) -0.0 SPF_HELO_PASS SPF: HELO matches SPF record 0.0 SPOOFED_FREEMAIL No description available. 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: 2.6 (++) X-Spam-Report: Spam detection software, running on the system "debbugs.gnu.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see the administrator of that system for details. Content preview: Dear Emacs developers, I just typed into an email reply when Emacs stopped working. Infos regarding this Emacs binary and the GDB output below. The GDB session is still running on this laptop. Content analysis details: (2.6 points, 10.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -0.0 RCVD_IN_DNSWL_NONE RBL: Sender listed at https://www.dnswl.org/, no trust [2001:470:142:0:0:0:0:17 listed in] [list.dnswl.org] 3.6 RCVD_IN_SBL_CSS RBL: Received via a relay in Spamhaus SBL-CSS [95.90.236.208 listed in zen.spamhaus.org] 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (telegraph[at]gmx.net) 0.0 T_SPF_PERMERROR SPF: test of record failed (permerror) -0.0 SPF_HELO_PASS SPF: HELO matches SPF record -1.0 MAILING_LIST_MULTI Multiple indicators imply a widely-seen list manager Dear Emacs developers, I just typed into an email reply when Emacs stopped working. Infos regarding this Emacs binary and the GDB output below. The GDB session is still running on this laptop. Thanks for your attention, Gregor In GNU Emacs 31.0.50 (build 13, x86_64-pc-linux-gnu, cairo version 1.16.0) of 2025-03-06 built on no Repository revision: 9a657e1dabc196e60dcf48435d48fb51aef3c60d Repository branch: feature/igc Windowing system distributor 'The X.Org Foundation', version 11.0.12101007 System Description: Debian GNU/Linux 12 (bookworm) Configured using: 'configure --infodir=3D/usr/share/info/emacs --with-json --with-file-notification=3Dyes --with-libsystemd --with-cairo --with-x=3Dyes --with-x-toolkit=3Dno --without-toolkit-scroll-bars --without-gsettings --enable-check-lisp-object-type --enable-checking=3Dyes,glyphs --with-native-compilation=3Dyes --with-mps=3Dyes 'CFLAGS=3D-ggdb3 -O3 -ffile-prefix-map=3D/home/grfz/src/emacs-igc=3D. -fstack-protector-strong -Wformat -Werror=3Dformat-security -fno-omit-frame-pointer' 'CPPFLAGS=3D-I/home/grfz/mps-artifacts -Wdate-time -D_FORTIFY_SOURCE=3D2' 'LDFLAGS=3D-L/home/grfz/mps-artifacts -Wl,-z,relro'' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM HARFBUZZ JPEG LCMS2 LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2 M17N_FLT MODULES MPS NATIVE_COMP NOTIFY INOTIFY OLDXMENU PDUMPER PNG RSVG SECCOMP SOUND SQLITE3 THREADS TIFF WEBP X11 XDBE XIM XINERAMA XINPUT2 XPM XRANDR ZLIB Important settings: value of $LC_ALL: value of $LC_COLLATE: de_DE.utf8 value of $LC_CTYPE: de_DE.utf8 value of $LC_MESSAGES: POSIX value of $LC_MONETARY: de_DE.utf8 value of $LC_NUMERIC: de_DE.utf8 value of $LC_TIME: de_DE.utf8 value of $LANG: de_DE.utf8 locale-coding-system: utf-8-unix Major mode: Messages Minor modes in effect: winner-mode: t pdf-occur-global-minor-mode: t mail-abbrevs-mode: t savehist-mode: t ws-butler-global-mode: t delete-selection-mode: t minibuffer-depth-indicate-mode: t which-function-mode: t windmove-mode: t xterm-mouse-mode: t key-chord-mode: t which-key-mode: t find-function-mode: t override-global-mode: t tooltip-mode: t global-eldoc-mode: t show-paren-mode: t electric-indent-mode: t mouse-wheel-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t minibuffer-regexp-mode: t buffer-read-only: t size-indication-mode: t column-number-mode: t line-number-mode: t transient-mark-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t Load-path shadows: ~/src/notmuch/emacs/notmuch-address hides /home/grfz/.config/emacs/elisp/n= otmuch-address /home/grfz/src/ol-notmuch/ol-notmuch hides /home/grfz/.config/emacs/elisp/= ol-notmuch /home/grfz/.config/emacs/elpa-31.0/magit-4.3.1/magit-autorevert hides /hom= e/grfz/.config/emacs/elpa-31.0/magit-section-4.3.1/magit-autorevert ~/src/notmuch/emacs/notmuch-lib hides /usr/local/share/emacs/site-lisp/not= much-lib ~/src/notmuch/emacs/coolj hides /usr/local/share/emacs/site-lisp/coolj ~/src/notmuch/emacs/notmuch-address hides /usr/local/share/emacs/site-lisp= /notmuch-address ~/src/notmuch/emacs/notmuch-hello hides /usr/local/share/emacs/site-lisp/n= otmuch-hello ~/src/notmuch/emacs/notmuch-parser hides /usr/local/share/emacs/site-lisp/= notmuch-parser ~/src/notmuch/emacs/notmuch-show hides /usr/local/share/emacs/site-lisp/no= tmuch-show ~/src/notmuch/emacs/notmuch-wash hides /usr/local/share/emacs/site-lisp/no= tmuch-wash ~/src/notmuch/emacs/notmuch-draft hides /usr/local/share/emacs/site-lisp/n= otmuch-draft ~/src/notmuch/emacs/notmuch-tree hides /usr/local/share/emacs/site-lisp/no= tmuch-tree ~/src/notmuch/emacs/notmuch-version hides /usr/local/share/emacs/site-lisp= /notmuch-version ~/src/notmuch/emacs/notmuch-jump hides /usr/local/share/emacs/site-lisp/no= tmuch-jump ~/src/notmuch/emacs/notmuch-company hides /usr/local/share/emacs/site-lisp= /notmuch-company ~/src/notmuch/emacs/notmuch hides /usr/local/share/emacs/site-lisp/notmuch ~/src/notmuch/emacs/notmuch-crypto hides /usr/local/share/emacs/site-lisp/= notmuch-crypto ~/src/notmuch/emacs/notmuch-compat hides /usr/local/share/emacs/site-lisp/= notmuch-compat ~/src/notmuch/emacs/notmuch-maildir-fcc hides /usr/local/share/emacs/site-= lisp/notmuch-maildir-fcc ~/src/notmuch/emacs/notmuch-tag hides /usr/local/share/emacs/site-lisp/not= much-tag ~/src/notmuch/emacs/notmuch-message hides /usr/local/share/emacs/site-lisp= /notmuch-message ~/src/notmuch/emacs/notmuch-print hides /usr/local/share/emacs/site-lisp/n= otmuch-print ~/src/notmuch/emacs/notmuch-mua hides /usr/local/share/emacs/site-lisp/not= much-mua ~/src/notmuch/emacs/notmuch-query hides /usr/local/share/emacs/site-lisp/n= otmuch-query /home/grfz/.config/emacs/elpa-31.0/transient-0.8.5/transient hides /home/g= rfz/src/emacs-igc/lisp/transient /home/grfz/.config/emacs/elpa-31.0/python-0.29/python hides /home/grfz/src= /emacs-igc/lisp/progmodes/python /home/grfz/.config/emacs/elpa-31.0/idlwave-6.5.1/idlw-shell hides /home/gr= fz/src/emacs-igc/lisp/obsolete/idlw-shell /home/grfz/.config/emacs/elpa-31.0/idlwave-6.5.1/idlwave hides /home/grfz/= src/emacs-igc/lisp/obsolete/idlwave /home/grfz/.config/emacs/elpa-31.0/idlwave-6.5.1/idlw-toolbar hides /home/= grfz/src/emacs-igc/lisp/obsolete/idlw-toolbar /home/grfz/.config/emacs/elpa-31.0/idlwave-6.5.1/idlw-help hides /home/grf= z/src/emacs-igc/lisp/obsolete/idlw-help /home/grfz/.config/emacs/elpa-31.0/idlwave-6.5.1/idlw-complete-structtag h= ides /home/grfz/src/emacs-igc/lisp/obsolete/idlw-complete-structtag Features: (shadow sort orgalist wcheck-mode ecomplete mail-extr emacsbug lisp-mnt tramp trampver tramp-integration files-x tramp-message tramp-compat shell parse-time iso8601 tramp-loaddefs add-log rainbow-delimiters cus-start winner pdf-occur ibuf-ext ibuffer ibuffer-loaddefs tablist tablist-filter semantic/wisent/comp semantic/wisent semantic/wisent/wisent semantic/util-modes semantic/util semantic semantic/tag semantic/lex semantic/fw mode-local cedet pdf-isearch let-alist pdf-misc pdf-tools compile pdf-view bookmark jka-compr pdf-cache pdf-info tq pdf-util pdf-macs image-mode exif ol-notmuch notmuch notmuch-tree notmuch-jump notmuch-hello notmuch-show notmuch-print notmuch-crypto notmuch-mua notmuch-message notmuch-draft notmuch-maildir-fcc notmuch-address notmuch-company notmuch-parser notmuch-wash diff-mode track-changes coolj goto-addr icalendar diary-lib diary-loaddefs notmuch-tag crm notmuch-lib notmuch-version notmuch-compat hl-line mm-view mml-smime smime gnutls dig compat org-contrib org-crypt org-protocol org-clock dbus xml ob-plantuml gnus-alias advice message yank-media puny dired dired-loaddefs rfc822 mml mml-sec epa derived epg rfc6068 epg-config gnus-util text-property-search mm-decode mm-bodies mm-encode mail-parse rfc2231 gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils mailabbrev savehist auth-source-pass holidays holiday-loaddefs ws-butler delsel modus-operandi-theme modus-themes mb-depth which-func imenu windmove xt-mouse edmacro kmacro key-chord which-key comp comp-cstr cl-extra help-mode warnings comp-run comp-common org ob ob-ref ob-lob ob-table ob-exp org-macro org-pcomplete pcomplete org-list org-footnote org-faces org-entities time-date noutline outline ob-emacs-lisp org-table org-loaddefs thingatpt find-func cal-menu calendar cal-loaddefs ob-tangle ol org-src sh-script rx smie treesit executable org-keys oc ob-comint comint ansi-osc ansi-color ring ob-core org-cycle org-fold org-fold-core org-compat ob-eval org-version org-macs format-spec use-package use-package-ensure use-package-delight use-package-diminish use-package-bind-key bind-key easy-mmode use-package-core async-autoloads csv-mode-autoloads dash-autoloads debbugs-autoloads dired-git-info-autoloads git-timemachine-autoloads hyperbole-autoloads kotl-autoloads hact set hhist idlwave-autoloads key-chord-autoloads magit-autoloads pcase magit-section-autoloads llama-autoloads minibuffer-line-autoloads org-contrib-autoloads org-noter-autoloads org-autoloads orgalist-autoloads paredit-autoloads pdf-tools-autoloads python-autoloads qpdf.el-autoloads finder-inf rainbow-delimiters-autoloads tablist-autoloads transient-autoloads wcheck-mode-autoloads info with-editor-autoloads ws-butler-autoloads package browse-url xdg url url-proxy url-privacy url-expand url-methods url-history url-cookie generate-lisp-file url-domsuf url-util mailcap url-handlers url-parse auth-source cl-seq eieio eieio-core cl-macs password-cache json subr-x map byte-opt gv bytecomp byte-compile url-vars cus-edit pp cus-load icons wid-edit cl-loaddefs cl-lib rmc iso-transl tooltip cconv eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel term/x-win x-win term/common-win x-dnd touch-screen tool-bar dnd fontset image regexp-opt fringe tabulated-list replace newcomment text-mode lisp-mode prog-mode register page tab-bar menu-bar rfn-eshadow isearch easymenu timer select scroll-bar mouse jit-lock font-lock syntax font-core term/tty-colors frame minibuffer nadvice seq simple cl-generic indonesian philippine cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese eucjp-ms cp51932 hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese composite emoji-zwj charscript charprop case-table epa-hook jka-cmpr-hook help abbrev obarray oclosure cl-preloaded button loaddefs theme-loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget keymap hashtable-print-readable backquote threads dbusbind inotify lcms2 dynamic-setting font-render-setting cairo xinput2 x multi-tty move-toolbar make-network-process tty-child-frames native-compile mps emacs) Memory information: ((conses 24 0 0) (symbols 56 0 0) (strings 40 0 0) (string-bytes 1 0) (vectors 24 0) (vector-slots 8 0 0) (floats 24 0 0) (intervals 64 0 0) (buffers 992 0)) Starting program: /home/grfz/src/emacs-igc/src/emacs --debug-init -xrm --i= nit-directory=3D"${USER_EMACS_DIRECTORY}" --fg-daemon=3D"${EMACS_SERVER_NA= ME}" [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". [Detaching after vfork from child process 3969] [Detaching after vfork from child process 3971] [Detaching after vfork from child process 3972] [Detaching after vfork from child process 3973] [Detaching after vfork from child process 3976] [Detaching after vfork from child process 3978] [Detaching after vfork from child process 3980] [Detaching after vfork from child process 3981] [Detaching after vfork from child process 30330] Program received signal SIGSEGV, Segmentaction fault. [... 43 lines deleted ...] Program received signal SIGSEGV, Segmentation fault. [Detaching after vfork from child process 30331] [Detaching after vfork from child process 30332] [Detaching after vfork from child process 30333] [Detaching after vfork from child process 30334] [Detaching after vfork from child process 30335] [Detaching after vfork from child process 30336] [Detaching after vfork from child process 30337] [Detaching after vfork from child process 30338] [Detaching after vfork from child process 30339] [Detaching after vfork from child process 30340] [Detaching after vfork from child process 30341] [Detaching after vfork from child process 30342] [Detaching after vfork from child process 30343] [Detaching after vfork from child process 30344] [Detaching after vfork from child process 30345] [Detaching after vfork from child process 30346] [Detaching after vfork from child process 30347] [Detaching after vfork from child process 30348] [Detaching after vfork from child process 30349] [Detaching after vfork from child process 30350] [Detaching after vfork from child process 30351] [Detaching after vfork from child process 30377] [Detaching after vfork from child process 30462] [Detaching after vfork from child process 30472] [Detaching after vfork from child process 30473] [Detaching after vfork from child process 30486] [Detaching after vfork from child process 30490] [Detaching after vfork from child process 30496] [Detaching after vfork from child process 30866] [Detaching after vfork from child process 30867] [Detaching after vfork from child process 30876] [Detaching after vfork from child process 30877] Program received signal SIGSEGV, Segmentation fault. [... 138 lines deleted ...] Program received signal SIGSEGV, Segmentation fault. [Detaching after vfork from child process 31368] [Detaching after vfork from child process 31369] Program received signal SIGSEGV, Segmentation fault. [ deleted 40 lines ] Program received signal SIGSEGV, Segmentation fault. Breakpoint 1, terminate_due_to_signal (sig=3Dsig@entry=3D11, backtrace_lim= it=3Dbacktrace_limit@entry=3D40) at ./src/emacs.c:425 425 { #0 terminate_due_to_signal (sig=3Dsig@entry=3D11, backtrace_limit=3Dbackt= race_limit@entry=3D40) at ./src/emacs.c:425 #1 0x00005555555b39ec in handle_fatal_signal (sig=3D11) at ./src/sysdep.c= :1793 #2 deliver_thread_signal (handler=3D<optimized out>, sig=3D11) at ./src/s= ysdep.c:1785 #3 deliver_fatal_thread_signal (sig=3D11) at ./src/sysdep.c:1805 #4 handle_sigsegv (sig=3D11, siginfo=3D0x555555b17430 <sigsegv_stack+6449= 6>, arg=3D<optimized out>) at ./src/sysdep.c:1943 #5 0x00007ffff3cfc050 in <signal handler called> () at /lib/x86_64-linux-= gnu/libc.so.6 #6 0x00007ffff3cfc267 in kill () at /lib/x86_64-linux-gnu/libc.so.6 #7 0x00005555559b30f4 in sigHandle () #8 0x00007ffff3cfc050 in <signal handler called> () at /lib/x86_64-linux-= gnu/libc.so.6 #9 indirect_function (object=3Dobject@entry=3DXIL(0x7fffcd16d9f0)) at ./s= rc/lisp.h:1160 #10 0x0000555555787f23 in get_keymap (object=3Dobject@entry=3DXIL(0x7fffcd= 16d9f0), autoload=3Dautoload@entry=3Dtrue, error_if_not_keymap=3Dfalse) at= ./src/keymap.c:200 #11 0x000055555578932c in access_keymap_1 (map=3DPython Exception <class '= gdb.error'>: value has been optimized out , idx=3DPython Exception <class 'gdb.error'>: value has been optimized out , t_ok=3Dfalse, noinherit=3Dfalse, autoload=3D<optimized out>) at ./src/ke= ymap.c:387 #12 0x00005555557899c3 in access_keymap (autoload=3Dtrue, noinherit=3Dfals= e, t_ok=3D<optimized out>, idx=3DPython Exception <class 'gdb.error'>: val= ue has been optimized out , map=3DPython Exception <class 'gdb.error'>: value has been optimized out ) at ./src/keymap.c:495 #13 lookup_key_1 (keymap=3Dkeymap@entry=3DXIL(0x7fffebba8bc3), key=3Dkey@e= ntry=3DXIL(0x7fffe518bfd5), accept_default=3DPython Exception <class 'gdb.= error'>: value has been optimized out , accept_default@entry=3DXIL(0)) at ./src/keymap.c:1276 #14 0x0000555555789c35 in Flookup_key (keymap=3DPython Exception <class 'g= db.error'>: value has been optimized out , key=3DPython Exception <class 'gdb.error'>: value has been optimized out , accept_default=3DPython Exception <class 'gdb.error'>: value has been op= timized out ) at ./src/keymap.c:1313 #15 0x00007fffdf1a177e in F6b65792d63686f72642d6c6f6f6b75702d6b657931_key_= chord_lookup_key1_0 () at /home/grfz/.config/emacs/eln-cache/31.0.50-f370b= e3c/key-chord-7d226a97-6fa76aab.eln #16 0x000055555582568f in funcall_subr (subr=3D0x7fffcd96c470, numargs=3D2= , args=3D<optimized out>) at ./src/eval.c:3184 #17 0x0000555555821f5f in Ffuncall (nargs=3D3, args=3D0x7fffffffc0d0) at .= /src/eval.c:3114 #18 0x00007fffdf1a187d in F6b65792d63686f72642d6c6f6f6b75702d6b6579_key_ch= ord_lookup_key_0 () at /home/grfz/.config/emacs/eln-cache/31.0.50-f370be3c= /key-chord-7d226a97-6fa76aab.eln #19 0x00005555558256a0 in funcall_subr (subr=3D0x7fffeed8a260, numargs=3D1= , args=3D<optimized out>) at ./src/eval.c:3182 #20 0x0000555555821f5f in Ffuncall (nargs=3D2, args=3D0x7fffffffc220) at .= /src/eval.c:3114 #21 0x00007fffdf1a1a7c in F6b65792d63686f72642d696e7075742d6d6574686f64_ke= y_chord_input_method_0 () at /home/grfz/.config/emacs/eln-cache/31.0.50-f3= 70be3c/key-chord-7d226a97-6fa76aab.eln #22 0x00005555558256a0 in funcall_subr (subr=3D0x7fffec56dd48, numargs=3D1= , args=3D<optimized out>) at ./src/eval.c:3182 #23 0x0000555555821f5f in Ffuncall (nargs=3Dnargs@entry=3D2, args=3Dargs@e= ntry=3D0x7fffffffc660) at ./src/eval.c:3114 #24 0x000055555577b8ce in read_char (commandflag=3D1, map=3DPython Excepti= on <class 'gdb.error'>: value has been optimized out , map@entry=3DXIL(0x7fffe518777b), prev_event=3DPython Exception <class 'g= db.error'>: value has been optimized out , used_mouse_menu=3Dused_mouse_menu@entry=3D0x7fffffffcb0b, end_time=3Dend= _time@entry=3D0x0) at ./src/keyboard.c:3272 #25 0x000055555577ea6b in read_key_sequence (keybuf=3Dkeybuf@entry=3D0x7ff= fffffcc70, prompt=3DPython Exception <class 'gdb.error'>: value has been o= ptimized out , prompt@entry=3DXIL(0), dont_downcase_last=3Ddont_downcase_last@entry=3Df= alse, can_return_switch_frame=3Dcan_return_switch_frame@entry=3Dtrue, fix_= current_buffer=3Dfix_current_buffer@entry=3Dtrue, prevent_redisplay=3Dprev= ent_redisplay@entry=3Dfalse, disable_text_conversion_p=3D<optimized out>) = at ./src/keyboard.c:10801 #26 0x0000555555780797 in command_loop_1 () at ./src/lisp.h:1184 #27 0x000055555581e8f6 in internal_condition_case (bfun=3Dbfun@entry=3D0x5= 55555780540 <command_loop_1>, handlers=3Dhandlers@entry=3DXIL(0xa8), hfun= =3Dhfun@entry=3D0x555555764310 <cmd_error>) at ./src/eval.c:1625 #28 0x0000555555762f4e in command_loop_2 (handlers=3Dhandlers@entry=3DXIL(= 0xa8)) at ./src/keyboard.c:1174 #29 0x000055555581e67f in internal_catch (tag=3Dtag@entry=3DXIL(0x15578), = func=3Dfunc@entry=3D0x555555762f20 <command_loop_2>, arg=3DPython Exceptio= n <class 'gdb.error'>: value has been optimized out , arg@entry=3DXIL(0xa8)) at ./src/eval.c:1305 #30 0x0000555555762ee9 in command_loop () at ./src/lisp.h:1184 #31 0x000055555576fc85 in recursive_edit_1 () at ./src/keyboard.c:760 #32 0x0000555555770035 in Frecursive_edit () at ./src/keyboard.c:843 #33 0x00005555555d2177 in main (argc=3D5, argv=3D<optimized out>) at ./src= /emacs.c:2584 Lisp Backtrace: "key-chord-lookup-key1" (0xffffc0d8) "key-chord-lookup-key" (0xffffc228) "key-chord-input-method" (0xffffc668) "key-chord-lookup-key1" (0xffffc0d8) "key-chord-lookup-key" (0xffffc228) "key-chord-input-method" (0xffffc668) #0 terminate_due_to_signal (sig=3Dsig@entry=3D11, backtrace_limit=3Dbackt= race_limit@entry=3D40) at ./src/emacs.c:425 #1 0x00005555555b39ec in handle_fatal_signal (sig=3D11) at ./src/sysdep.c= :1793 fatal =3D <optimized out> #2 deliver_thread_signal (handler=3D<optimized out>, sig=3D11) at ./src/s= ysdep.c:1785 fatal =3D <optimized out> #3 deliver_fatal_thread_signal (sig=3D11) at ./src/sysdep.c:1805 fatal =3D <optimized out> #4 handle_sigsegv (sig=3D11, siginfo=3D0x555555b17430 <sigsegv_stack+6449= 6>, arg=3D<optimized out>) at ./src/sysdep.c:1943 fatal =3D <optimized out> #5 0x00007ffff3cfc050 in <signal handler called> () at /lib/x86_64-linux-= gnu/libc.so.6 #6 0x00007ffff3cfc267 in kill () at /lib/x86_64-linux-gnu/libc.so.6 #7 0x00005555559b30f4 in sigHandle () #8 0x00007ffff3cfc050 in <signal handler called> () at /lib/x86_64-linux-= gnu/libc.so.6 #9 indirect_function (object=3Dobject@entry=3DXIL(0x7fffcd16d9f0)) at ./s= rc/lisp.h:1160 #10 0x0000555555787f23 in get_keymap (object=3Dobject@entry=3DXIL(0x7fffcd= 16d9f0), autoload=3Dautoload@entry=3Dtrue, error_if_not_keymap=3Dfalse) at= ./src/keymap.c:200 tem =3D XIL(0xebba8bc0) #11 0x000055555578932c in access_keymap_1 (map=3DPython Exception <class '= gdb.error'>: value has been optimized out , idx=3DPython Exception <class 'gdb.error'>: value has been optimized out , t_ok=3Dfalse, noinherit=3Dfalse, autoload=3D<optimized out>) at ./src/ke= ymap.c:387 val =3D XIL(0x70) binding =3D Python Exception <class 'gdb.error'>: value has been o= ptimized out submap =3D Python Exception <class 'gdb.error'>: value has been op= timized out tail =3D Python Exception <class 'gdb.error'>: value has been opti= mized out retval =3D XIL(0x70) retval_tail =3D XIL(0) #12 0x00005555557899c3 in access_keymap (autoload=3Dtrue, noinherit=3Dfals= e, t_ok=3D<optimized out>, idx=3DPython Exception <class 'gdb.error'>: val= ue has been optimized out , map=3DPython Exception <class 'gdb.error'>: value has been optimized out ) at ./src/keymap.c:495 c =3D Python Exception <class 'gdb.error'>: value has been optimiz= ed out cmd =3D Python Exception <class 'gdb.error'>: value has been optim= ized out t_ok =3D <optimized out> length =3D 2 idx =3D 1 #13 lookup_key_1 (keymap=3Dkeymap@entry=3DXIL(0x7fffebba8bc3), key=3Dkey@e= ntry=3DXIL(0x7fffe518bfd5), accept_default=3DPython Exception <class 'gdb.= error'>: value has been optimized out , accept_default@entry=3DXIL(0)) at ./src/keymap.c:1276 c =3D Python Exception <class 'gdb.error'>: value has been optimiz= ed out cmd =3D Python Exception <class 'gdb.error'>: value has been optim= ized out t_ok =3D <optimized out> length =3D 2 idx =3D 1 #14 0x0000555555789c35 in Flookup_key (keymap=3DPython Exception <class 'g= db.error'>: value has been optimized out , key=3DPython Exception <class 'gdb.error'>: value has been optimized out , accept_default=3DPython Exception <class 'gdb.error'>: value has been op= timized out ) at ./src/keymap.c:1313 found =3D Python Exception <class 'gdb.error'>: value has been opt= imized out key_len =3D <optimized out> new_key =3D Python Exception <class 'gdb.error'>: value has been o= ptimized out tables =3D {XIL(0), XIL(0)} #15 0x00007fffdf1a177e in F6b65792d63686f72642d6c6f6f6b75702d6b657931_key_= chord_lookup_key1_0 () at /home/grfz/.config/emacs/eln-cache/31.0.50-f370b= e3c/key-chord-7d226a97-6fa76aab.eln #16 0x000055555582568f in funcall_subr (subr=3D0x7fffcd96c470, numargs=3D2= , args=3D<optimized out>) at ./src/eval.c:3184 argbuf =3D {XIL(0), XIL(0xc0), XIL(0), XIL(0x555555b3bf80), XIL(0x= 7fffffffc0d0), XIL(0x7fffffffc0d0), XIL(0x7fffffffc010), XIL(0x555555821e2= d)} a =3D <optimized out> maxargs =3D 2 #17 0x0000555555821f5f in Ffuncall (nargs=3D3, args=3D0x7fffffffc0d0) at .= /src/eval.c:3114 val =3D Python Exception <class 'gdb.error'>: value has been optim= ized out #18 0x00007fffdf1a187d in F6b65792d63686f72642d6c6f6f6b75702d6b6579_key_ch= ord_lookup_key_0 () at /home/grfz/.config/emacs/eln-cache/31.0.50-f370be3c= /key-chord-7d226a97-6fa76aab.eln #19 0x00005555558256a0 in funcall_subr (subr=3D0x7fffeed8a260, numargs=3D1= , args=3D<optimized out>) at ./src/eval.c:3182 argbuf =3D {XIL(0), XIL(0), XIL(0), XIL(0x5555558d85f0), XIL(0x7ff= fe518bfd0), XIL(0x6f9ab94513d29d00), XIL(0), XIL(0x555555821e2d)} a =3D <optimized out> maxargs =3D 1 #20 0x0000555555821f5f in Ffuncall (nargs=3D2, args=3D0x7fffffffc220) at .= /src/eval.c:3114 val =3D Python Exception <class 'gdb.error'>: value has been optim= ized out #21 0x00007fffdf1a1a7c in F6b65792d63686f72642d696e7075742d6d6574686f64_ke= y_chord_input_method_0 () at /home/grfz/.config/emacs/eln-cache/31.0.50-f3= 70be3c/key-chord-7d226a97-6fa76aab.eln #22 0x00005555558256a0 in funcall_subr (subr=3D0x7fffec56dd48, numargs=3D1= , args=3D<optimized out>) at ./src/eval.c:3182 argbuf =3D {XIL(0x7fffffffc360), XIL(0x5555558206f3), XIL(0x555555= 821e50), XIL(0xa0), XIL(0xc), XIL(0xcc18), XIL(0), XIL(0x555555821e2d)} a =3D <optimized out> maxargs =3D 1 #23 0x0000555555821f5f in Ffuncall (nargs=3Dnargs@entry=3D2, args=3Dargs@e= ntry=3D0x7fffffffc660) at ./src/eval.c:3114 val =3D Python Exception <class 'gdb.error'>: value has been optim= ized out #24 0x000055555577b8ce in read_char (commandflag=3D1, map=3DPython Excepti= on <class 'gdb.error'>: value has been optimized out , map@entry=3DXIL(0x7fffe518777b), prev_event=3DPython Exception <class 'g= db.error'>: value has been optimized out , used_mouse_menu=3Dused_mouse_menu@entry=3D0x7fffffffcb0b, end_time=3Dend= _time@entry=3D0x0) at ./src/keyboard.c:3272 keys =3D Python Exception <class 'gdb.error'>: value has been opti= mized out key_count =3D 0 saved_ok_to_echo =3D 0x0 saved_echo_string =3D XIL(0) command_key_start =3D 0 saved_immediate_echo =3D false saved_echo_prompt =3D XIL(0) c =3D make_fixnum(32) local_getcjmp =3D {{ __jmpbuf =3D {93824998315168, 6829240687561678770, 1, 14073748= 8342128, 0, 93825003550752, 6829240687232425906, 834013827588300722}, __mask_was_saved =3D 0, __saved_mask =3D { __val =3D {0, 56504, 0, 140737030063323, 140737030063320, 14= 0737488340976, 93824995806791, 56504, 8589920320, 140737488340976, 0, 5650= 4, 140737488341056, 140737037008112, 140737037008117, 140737488341248} } }} save_jump =3D {{ __jmpbuf =3D {0, 0, 0, 0, 0, 0, 0, 0}, __mask_was_saved =3D 0, __saved_mask =3D { __val =3D {0 <repeats 16 times>} } }} tem =3D Python Exception <class 'gdb.error'>: value has been optim= ized out save =3D Python Exception <class 'gdb.error'>: value has been opti= mized out previous_echo_area_message =3D XIL(0) also_record =3D XIL(0) reread =3D false recorded =3D true polling_stopped_here =3D false orig_kboard =3D 0x55555601f820 c_volatile =3D make_fixnum(32) #25 0x000055555577ea6b in read_key_sequence (keybuf=3Dkeybuf@entry=3D0x7ff= fffffcc70, prompt=3DPython Exception <class 'gdb.error'>: value has been o= ptimized out , prompt@entry=3DXIL(0), dont_downcase_last=3Ddont_downcase_last@entry=3Df= alse, can_return_switch_frame=3Dcan_return_switch_frame@entry=3Dtrue, fix_= current_buffer=3Dfix_current_buffer@entry=3Dtrue, prevent_redisplay=3Dprev= ent_redisplay@entry=3Dfalse, disable_text_conversion_p=3D<optimized out>) = at ./src/keyboard.c:10801 interrupted_kboard =3D 0x55555601f820 interrupted_frame =3D 0x7fffe77face8 key =3D Python Exception <class 'gdb.error'>: value has been optim= ized out used_mouse_menu =3D false echo_local_start =3D 0 last_real_key_start =3D 0 keys_local_start =3D 0 new_binding =3D Python Exception <class 'gdb.error'>: value has be= en optimized out t =3D 0 echo_start =3D 0 keys_start =3D 0 current_binding =3D XIL(0x7fffe518777b) first_unbound =3D 31 mock_input =3D 0 used_mouse_menu_history =3D {false <repeats 30 times>} fkey =3D { parent =3D XIL(0x7fffe7527c1b), map =3D XIL(0x7fffe7527c1b), start =3D 0, end =3D 0 } keytran =3D { parent =3D XIL(0x7fffebe4c24b), map =3D XIL(0x7fffebe4c24b), start =3D 0, end =3D 0 } indec =3D { parent =3D XIL(0x7fffe7527c03), map =3D XIL(0x7fffe7527c03), start =3D 0, end =3D 0 } shift_translated =3D false delayed_switch_frame =3D XIL(0) original_uppercase =3D XIL(0) original_uppercase_position =3D -1 disabled_conversion =3D false fake_prefixed_keys =3D XIL(0) first_event =3D XIL(0) #26 0x0000555555780797 in command_loop_1 () at ./src/lisp.h:1184 cmd =3D Python Exception <class 'gdb.error'>: value has been optim= ized out keybuf =3D {make_fixnum(110), make_fixnum(5), make_fixnum(106), ma= ke_fixnum(110), make_fixnum(110), XIL(0xa0), XIL(0x7fffffffcce0), XIL(0x6f= 9ab94513d29d00), XIL(0x2aaa8b114590), XIL(0x7fffe1026d55), XIL(0x400000003= f000000), XIL(0x4000000013000000), XIL(0x2aaa8b503958), XIL(0xe1026d55), X= IL(0x7fffffffcda0), XIL(0x555555820d91), XIL(0x7fffffffcd40), XIL(0x555555= 8083b0), make_fixnum(0), XIL(0x555555807fe8), XIL(0), XIL(0x6f9ab94513d29d= 00), XIL(0), XIL(0x60), XIL(0x7fffe6a51d6b), XIL(0), XIL(0xd2e0), XIL(0x55= 55559dc660), XIL(0x7fffffffcdc0), XIL(0x5555558206f3)} i =3D <optimized out> last_pt =3D <optimized out> prev_modiff =3D 10199 prev_buffer =3D 0x7fffe518fcf0 #27 0x000055555581e8f6 in internal_condition_case (bfun=3Dbfun@entry=3D0x5= 55555780540 <command_loop_1>, handlers=3Dhandlers@entry=3DXIL(0xa8), hfun= =3Dhfun@entry=3D0x555555764310 <cmd_error>) at ./src/eval.c:1625 val =3D XIL(0x7fffcd16d9f0) c =3D 0x7fffe1e12f98 #28 0x0000555555762f4e in command_loop_2 (handlers=3Dhandlers@entry=3DXIL(= 0xa8)) at ./src/keyboard.c:1174 #29 0x000055555581e67f in internal_catch (tag=3Dtag@entry=3DXIL(0x15578), = func=3Dfunc@entry=3D0x555555762f20 <command_loop_2>, arg=3DPython Exceptio= n <class 'gdb.error'>: value has been optimized out , arg@entry=3DXIL(0xa8)) at ./src/eval.c:1305 val =3D XIL(0x7fffcd16d9f0) c =3D 0x7fffe1ded968 #30 0x0000555555762ee9 in command_loop () at ./src/lisp.h:1184 #31 0x000055555576fc85 in recursive_edit_1 () at ./src/keyboard.c:760 val =3D Python Exception <class 'gdb.error'>: value has been optim= ized out #32 0x0000555555770035 in Frecursive_edit () at ./src/keyboard.c:843 #33 0x00005555555d2177 in main (argc=3D5, argv=3D<optimized out>) at ./src= /emacs.c:2584 stack_bottom_variable =3D 0x7ffff3e92c60 old_argc =3D <optimized out> no_loadup =3D <optimized out> junk =3D 0x0 dname_arg =3D 0x7fffffffd69a "EMACS-MPS=3Dyes" ch_to_dir =3D 0x0 original_pwd =3D <optimized out> dump_mode =3D <optimized out> skip_args =3D 1 temacs =3D 0x0 attempt_load_pdump =3D <optimized out> only_version =3D <optimized out> rlim =3D { rlim_cur =3D 10022912, rlim_max =3D 18446744073709551615 } lc_all =3D <optimized out> sockfd =3D <optimized out> module_assertions =3D <optimized out> Lisp Backtrace: "key-chord-lookup-key1" (0xffffc0d8) "key-chord-lookup-key" (0xffffc228) "key-chord-input-method" (0xffffc668) rax 0xe 14 rbx 0xb 11 rcx 0x3e800000f77 4294967299959 rdx 0xe68 3688 rsi 0x28 40 rdi 0xb 11 rbp 0x555555b172f0 0x555555b172f0 <sigsegv_stack+64176> rsp 0x555555b172c8 0x555555b172c8 <sigsegv_stack+64136> r8 0x7fffffffb6f0 140737488336624 r9 0x2aaa960216d8 46912149526232 r10 0x7ffff3cd6580 140737283712384 r11 0x206 518 r12 0x555555b17430 93824998274096 r13 0x7ffff2dc4380 140737267909504 r14 0x7fffffffb5f0 140737488336368 r15 0x7fffcd16d9f0 140736634214896 rip 0x5555555b1454 0x5555555b1454 <terminate_due_to_signal= > eflags 0x216 [ PF AF IF ] cs 0x33 51 ss 0x2b 43 ds 0x0 0 es 0x0 0 fs 0x0 0 gs 0x0 0 warning: target file /proc/3959/cmdline contained unexpected null characte= rs Saved corefile core.3959 Ciao, =2D- Gregor
Gregor Zattler <telegraph@HIDDEN>
:bug-gnu-emacs@HIDDEN
.
Full text available.bug-gnu-emacs@HIDDEN
:bug#76847
; Package emacs
.
Full text available.
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.