From unknown Sun Jun 22 00:44:54 2025 X-Loop: help-debbugs@gnu.org Subject: bug#64793: 28.2; python-mode: two single quotes makes emacs stop echoing and seem to hang Resent-From: Akkana Peck Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sat, 22 Jul 2023 21:27:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 64793 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 64793@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.169006116910788 (code B ref -1); Sat, 22 Jul 2023 21:27:02 +0000 Received: (at submit) by debbugs.gnu.org; 22 Jul 2023 21:26:09 +0000 Received: from localhost ([127.0.0.1]:37638 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qNK76-0002nw-C4 for submit@debbugs.gnu.org; Sat, 22 Jul 2023 17:26:08 -0400 Received: from lists.gnu.org ([2001:470:142::17]:38514) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qNK74-0002nQ-45 for submit@debbugs.gnu.org; Sat, 22 Jul 2023 17:26:06 -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 ) id 1qNK6y-0006r6-Lp for bug-gnu-emacs@gnu.org; Sat, 22 Jul 2023 17:26:00 -0400 Received: from dna.xen.prgmr.com ([2605:2700:0:5::4713:95bf] helo=shallowsky.com) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qNK6v-0003Hj-DX for bug-gnu-emacs@gnu.org; Sat, 22 Jul 2023 17:26:00 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=shallowsky.com; s=default; t=1690061149; bh=JPDN0jM7ZQmE2zNz0ivbITPnl7ZioIx0xw8zPoEz610=; h=Date:From:To:Subject:From; b=bbpZdK1Z2yzuuUYaB9j4ze/E0dSpXh9ELqc6AWwFHDXljnHkEe9y2+19EYSaR4f7o TS94NG/gn/dgZg14AVGgVlz/HQVLTvmg4DPbknjTk49AmpzEUdlu3MP/iTTEWaiAGO LMTGbjdwxA5YNzGqHEM3t50Xs2df5UUQFuEO4jTaVk69HB5i+Xw0J3I/6QZCWfQO2c hnmVLCsHy496lxXj82pI8Cf5k4WM1OV9sGmcQgfPVJcWOnLsjKAyPu32X0MDzAYL/b W1Y+tLDRscq2ufJM6ztiCpzDQ+X7U1okEEx5FJzib0t1iDP0JajMzXincLoYWmP8pR Pb4khJww1TPgg== Received: from shallowsky.com (97-123-86-81.albq.qwest.net [97.123.86.81]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shallowsky.com (Postfix) with ESMTPSA id 502B21C0067 for ; Sat, 22 Jul 2023 15:25:49 -0600 (MDT) Date: Sat, 22 Jul 2023 15:25:45 -0600 From: Akkana Peck Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/2.2.9 (2022-11-12) Received-SPF: pass client-ip=2605:2700:0:5::4713:95bf; envelope-from=akkana@shallowsky.com; helo=shallowsky.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, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) 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.0 (/) 1. Save the following file (minimal test example) as bug.py: ---- begin file ----- #!/usr/bin/env python3 def one_function(): print() return 42 def another_function(filename): """ With a docstring here, if you place the cursor between the two lines of one_function, hit tab to indent 4 spaces, then type two single quotes, '', emacs seems to lock up: the quotes aren't echoed and neither is anything else you type after that. But a Ctrl-G will wake emacs up and make the quotes and anything else you typed appear. Depending on your emacs config, you might need a double Ctrl-G. """ pass ---- end file ----- 2. Run emacs -Q bug.py 3. Go to line 5, the blank line between the print() and the return. 4. Hit TAB, which should automatically indent 4 spaces to match the two existing lines. 5. Type two single quotes '' -- note that the quotes do not echo. Try typing more characters, or moving up or down ... nothing works. In fact, try hiding then re-showing the window, or going to another virtual desktop then back to where the emacs window is: it doesn't even redraw, seems to be locked up hard. But it isn't really, because ^G^G will wake emacs up (sometimes a single ^G works, sometimes I need two, depending on what other packages are loaded). In GNU Emacs 28.2 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.37, cairo version 1.16.0) of 2023-05-13, modified by Debian built on x86-ubc-01 Windowing system distributor 'The X.Org Foundation', version 11.0.12101007 System Description: Debian GNU/Linux trixie/sid Configured using: 'configure --build x86_64-linux-gnu --prefix=/usr --sharedstatedir=/var/lib --libexecdir=/usr/libexec --localstatedir=/var/lib --infodir=/usr/share/info --mandir=/usr/share/man --with-libsystemd --with-pop=yes --enable-locallisppath=/etc/emacs:/usr/local/share/emacs/28.2/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/28.2/site-lisp:/usr/share/emacs/site-lisp --with-sound=alsa --without-gconf --with-mailutils --with-native-compilation --build x86_64-linux-gnu --prefix=/usr --sharedstatedir=/var/lib --libexecdir=/usr/libexec --localstatedir=/var/lib --infodir=/usr/share/info --mandir=/usr/share/man --with-libsystemd --with-pop=yes --enable-locallisppath=/etc/emacs:/usr/local/share/emacs/28.2/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/28.2/site-lisp:/usr/share/emacs/site-lisp --with-sound=alsa --without-gconf --with-mailutils --with-native-compilation --with-cairo --with-x=yes --with-x-toolkit=gtk3 --with-toolkit-scroll-bars 'CFLAGS=-g -O2 -ffile-prefix-map=/build/emacs-mPr7Vr/emacs-28.2+1=. -fstack-protector-strong -Wformat -Werror=format-security -Wall' 'CPPFLAGS=-Wdate-time -D_FORTIFY_SOURCE=2' LDFLAGS=-Wl,-z,relro' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ JPEG JSON LCMS2 LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2 M17N_FLT MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SOUND THREADS TIFF TOOLKIT_SCROLL_BARS X11 XDBE XIM XPM GTK3 ZLIB Important settings: value of $LC_COLLATE: C value of $LANG: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Python Minor modes in effect: shell-dirtrack-mode: t tooltip-mode: t global-eldoc-mode: t eldoc-mode: t show-paren-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message rmc puny dired dired-loaddefs rfc822 mml mml-sec epa derived epg rfc6068 epg-config gnus-util rmail rmail-loaddefs text-property-search mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils python tramp-sh comp comp-cstr warnings rx cl-extra help-mode tramp tramp-loaddefs trampver tramp-integration files-x tramp-compat shell pcomplete parse-time iso8601 time-date ls-lisp format-spec auth-source cl-seq eieio eieio-core cl-macs eieio-loaddefs password-cache json subr-x map seq byte-opt gv bytecomp byte-compile cconv comint ring cl-loaddefs cl-lib ansi-color iso-transl tooltip eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel term/x-win x-win term/common-win x-dnd 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 cl-generic 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 simple abbrev obarray cl-preloaded nadvice button loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote threads dbusbind inotify lcms2 dynamic-setting system-font-setting font-render-setting cairo move-toolbar gtk x-toolkit x multi-tty make-network-process native-compile emacs) Memory information: ((conses 16 119398 9279) (symbols 48 9843 1) (strings 32 31623 2880) (string-bytes 1 1115369) (vectors 16 20828) (vector-slots 8 389974 19791) (floats 8 38 36) (intervals 56 476 0) (buffers 992 13)) From unknown Sun Jun 22 00:44:54 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Akkana Peck Subject: bug#64793: closed (Re: bug#64793: 28.2; python-mode: two single quotes makes emacs stop echoing and seem to hang) Message-ID: References: <83pm4j6w5d.fsf@gnu.org> X-Gnu-PR-Message: they-closed 64793 X-Gnu-PR-Package: emacs Reply-To: 64793@debbugs.gnu.org Date: Sun, 23 Jul 2023 05:21:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1690089662-25691-1" This is a multi-part message in MIME format... ------------=_1690089662-25691-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #64793: 28.2; python-mode: two single quotes makes emacs stop echoing and s= eem to hang which was filed against the emacs package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 64793@debbugs.gnu.org. --=20 64793: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D64793 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1690089662-25691-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 64793-done) by debbugs.gnu.org; 23 Jul 2023 05:20:36 +0000 Received: from localhost ([127.0.0.1]:37799 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qNRWF-0006ff-Tu for submit@debbugs.gnu.org; Sun, 23 Jul 2023 01:20:36 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:54188) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qNRWD-0006fO-Df for 64793-done@debbugs.gnu.org; Sun, 23 Jul 2023 01:20:34 -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 ) id 1qNRW6-00024d-DG; Sun, 23 Jul 2023 01:20:26 -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=qt4CMQq8RftfqXwWSa3Wl2sp8A26+uVHlsuXOBpcYtQ=; b=kiIqh1BFqG5V 9ivPG05Giaw/R75OBVd9HqAo3G0l0ZYR8XgJbjCTY/DUtDZRqv9ptNVGqgnfjN5Rbh8HxBR7KvFcP Gq7MScpIDHnCcivw4eBvCuLY/b0LCsr2G4CGRHi20wueKobzCWenPCsgKboy6lnTbYgkKcLHs8CW4 UylPe8UplJLiqdWyDWv6UFMk81ICwB5LY3puapT67/05YcPkA34naHWcIamSmmWgB0bvSAWIqC3/c UaUGlw1Z6eC1Ch/OUtIH3HnG5JF0MPGIVH4RwOpmq9AgaReB4LJg+E73XrBeOmN0RyNkYRW2qqHTI O6TC8dIEmENiuOnpBOHUlg==; Received: from [87.69.77.57] (helo=home-c4e4a596f7) by fencepost.gnu.org with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qNRW4-00011t-O9; Sun, 23 Jul 2023 01:20:26 -0400 Date: Sun, 23 Jul 2023 08:21:02 +0300 Message-Id: <83pm4j6w5d.fsf@gnu.org> From: Eli Zaretskii To: Akkana Peck In-Reply-To: (message from Akkana Peck on Sat, 22 Jul 2023 15:25:45 -0600) Subject: Re: bug#64793: 28.2; python-mode: two single quotes makes emacs stop echoing and seem to hang References: X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: 64793-done Cc: 64793-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -3.3 (---) > Date: Sat, 22 Jul 2023 15:25:45 -0600 > From: Akkana Peck > > 1. Save the following file (minimal test example) as bug.py: > > ---- begin file ----- > #!/usr/bin/env python3 > > def one_function(): > print() > > return 42 > > > def another_function(filename): > """ > With a docstring here, if you place the cursor between the two > lines of one_function, hit tab to indent 4 spaces, then type > two single quotes, '', emacs seems to lock up: the quotes aren't > echoed and neither is anything else you type after that. > But a Ctrl-G will wake emacs up and make the quotes and anything > else you typed appear. Depending on your emacs config, you might > need a double Ctrl-G. > """ > pass > ---- end file ----- > > 2. Run emacs -Q bug.py > > 3. Go to line 5, the blank line between the print() and the return. > > 4. Hit TAB, which should automatically indent 4 spaces to match the two > existing lines. > > 5. Type two single quotes '' -- note that the quotes do not echo. > Try typing more characters, or moving up or down ... nothing works. > In fact, try hiding then re-showing the window, or going to another > virtual desktop then back to where the emacs window is: it doesn't even > redraw, seems to be locked up hard. > > But it isn't really, because ^G^G will wake emacs up (sometimes a single > ^G works, sometimes I need two, depending on what other packages are loaded). Thanks, this is already fixed in what will shortly become Emacs 29.1. So I'm closing this bug. ------------=_1690089662-25691-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 22 Jul 2023 21:26:09 +0000 Received: from localhost ([127.0.0.1]:37638 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qNK76-0002nw-C4 for submit@debbugs.gnu.org; Sat, 22 Jul 2023 17:26:08 -0400 Received: from lists.gnu.org ([2001:470:142::17]:38514) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1qNK74-0002nQ-45 for submit@debbugs.gnu.org; Sat, 22 Jul 2023 17:26:06 -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 ) id 1qNK6y-0006r6-Lp for bug-gnu-emacs@gnu.org; Sat, 22 Jul 2023 17:26:00 -0400 Received: from dna.xen.prgmr.com ([2605:2700:0:5::4713:95bf] helo=shallowsky.com) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1qNK6v-0003Hj-DX for bug-gnu-emacs@gnu.org; Sat, 22 Jul 2023 17:26:00 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=shallowsky.com; s=default; t=1690061149; bh=JPDN0jM7ZQmE2zNz0ivbITPnl7ZioIx0xw8zPoEz610=; h=Date:From:To:Subject:From; b=bbpZdK1Z2yzuuUYaB9j4ze/E0dSpXh9ELqc6AWwFHDXljnHkEe9y2+19EYSaR4f7o TS94NG/gn/dgZg14AVGgVlz/HQVLTvmg4DPbknjTk49AmpzEUdlu3MP/iTTEWaiAGO LMTGbjdwxA5YNzGqHEM3t50Xs2df5UUQFuEO4jTaVk69HB5i+Xw0J3I/6QZCWfQO2c hnmVLCsHy496lxXj82pI8Cf5k4WM1OV9sGmcQgfPVJcWOnLsjKAyPu32X0MDzAYL/b W1Y+tLDRscq2ufJM6ztiCpzDQ+X7U1okEEx5FJzib0t1iDP0JajMzXincLoYWmP8pR Pb4khJww1TPgg== Received: from shallowsky.com (97-123-86-81.albq.qwest.net [97.123.86.81]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (prime256v1) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by shallowsky.com (Postfix) with ESMTPSA id 502B21C0067 for ; Sat, 22 Jul 2023 15:25:49 -0600 (MDT) Date: Sat, 22 Jul 2023 15:25:45 -0600 From: Akkana Peck To: bug-gnu-emacs@gnu.org Subject: 28.2; python-mode: two single quotes makes emacs stop echoing and seem to hang Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/2.2.9 (2022-11-12) Received-SPF: pass client-ip=2605:2700:0:5::4713:95bf; envelope-from=akkana@shallowsky.com; helo=shallowsky.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, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: 1.0 (+) 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.0 (/) 1. Save the following file (minimal test example) as bug.py: ---- begin file ----- #!/usr/bin/env python3 def one_function(): print() return 42 def another_function(filename): """ With a docstring here, if you place the cursor between the two lines of one_function, hit tab to indent 4 spaces, then type two single quotes, '', emacs seems to lock up: the quotes aren't echoed and neither is anything else you type after that. But a Ctrl-G will wake emacs up and make the quotes and anything else you typed appear. Depending on your emacs config, you might need a double Ctrl-G. """ pass ---- end file ----- 2. Run emacs -Q bug.py 3. Go to line 5, the blank line between the print() and the return. 4. Hit TAB, which should automatically indent 4 spaces to match the two existing lines. 5. Type two single quotes '' -- note that the quotes do not echo. Try typing more characters, or moving up or down ... nothing works. In fact, try hiding then re-showing the window, or going to another virtual desktop then back to where the emacs window is: it doesn't even redraw, seems to be locked up hard. But it isn't really, because ^G^G will wake emacs up (sometimes a single ^G works, sometimes I need two, depending on what other packages are loaded). In GNU Emacs 28.2 (build 1, x86_64-pc-linux-gnu, GTK+ Version 3.24.37, cairo version 1.16.0) of 2023-05-13, modified by Debian built on x86-ubc-01 Windowing system distributor 'The X.Org Foundation', version 11.0.12101007 System Description: Debian GNU/Linux trixie/sid Configured using: 'configure --build x86_64-linux-gnu --prefix=/usr --sharedstatedir=/var/lib --libexecdir=/usr/libexec --localstatedir=/var/lib --infodir=/usr/share/info --mandir=/usr/share/man --with-libsystemd --with-pop=yes --enable-locallisppath=/etc/emacs:/usr/local/share/emacs/28.2/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/28.2/site-lisp:/usr/share/emacs/site-lisp --with-sound=alsa --without-gconf --with-mailutils --with-native-compilation --build x86_64-linux-gnu --prefix=/usr --sharedstatedir=/var/lib --libexecdir=/usr/libexec --localstatedir=/var/lib --infodir=/usr/share/info --mandir=/usr/share/man --with-libsystemd --with-pop=yes --enable-locallisppath=/etc/emacs:/usr/local/share/emacs/28.2/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/28.2/site-lisp:/usr/share/emacs/site-lisp --with-sound=alsa --without-gconf --with-mailutils --with-native-compilation --with-cairo --with-x=yes --with-x-toolkit=gtk3 --with-toolkit-scroll-bars 'CFLAGS=-g -O2 -ffile-prefix-map=/build/emacs-mPr7Vr/emacs-28.2+1=. -fstack-protector-strong -Wformat -Werror=format-security -Wall' 'CPPFLAGS=-Wdate-time -D_FORTIFY_SOURCE=2' LDFLAGS=-Wl,-z,relro' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ JPEG JSON LCMS2 LIBOTF LIBSELINUX LIBSYSTEMD LIBXML2 M17N_FLT MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SOUND THREADS TIFF TOOLKIT_SCROLL_BARS X11 XDBE XIM XPM GTK3 ZLIB Important settings: value of $LC_COLLATE: C value of $LANG: en_US.UTF-8 locale-coding-system: utf-8-unix Major mode: Python Minor modes in effect: shell-dirtrack-mode: t tooltip-mode: t global-eldoc-mode: t eldoc-mode: t show-paren-mode: t electric-indent-mode: t mouse-wheel-mode: t tool-bar-mode: t menu-bar-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-composition-mode: t auto-encryption-mode: t auto-compression-mode: t line-number-mode: t transient-mark-mode: t Load-path shadows: None found. Features: (shadow sort mail-extr emacsbug message rmc puny dired dired-loaddefs rfc822 mml mml-sec epa derived epg rfc6068 epg-config gnus-util rmail rmail-loaddefs text-property-search mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils python tramp-sh comp comp-cstr warnings rx cl-extra help-mode tramp tramp-loaddefs trampver tramp-integration files-x tramp-compat shell pcomplete parse-time iso8601 time-date ls-lisp format-spec auth-source cl-seq eieio eieio-core cl-macs eieio-loaddefs password-cache json subr-x map seq byte-opt gv bytecomp byte-compile cconv comint ring cl-loaddefs cl-lib ansi-color iso-transl tooltip eldoc paren electric uniquify ediff-hook vc-hooks lisp-float-type elisp-mode mwheel term/x-win x-win term/common-win x-dnd 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 cl-generic 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 simple abbrev obarray cl-preloaded nadvice button loaddefs faces cus-face macroexp files window text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote threads dbusbind inotify lcms2 dynamic-setting system-font-setting font-render-setting cairo move-toolbar gtk x-toolkit x multi-tty make-network-process native-compile emacs) Memory information: ((conses 16 119398 9279) (symbols 48 9843 1) (strings 32 31623 2880) (string-bytes 1 1115369) (vectors 16 20828) (vector-slots 8 389974 19791) (floats 8 38 36) (intervals 56 476 0) (buffers 992 13)) ------------=_1690089662-25691-1--