From unknown Tue Aug 19 05:08:21 2025 X-Loop: help-debbugs@gnu.org Subject: bug#52196: 28.0.60; gdb-mi error message: "wrong type argument: stringp" Resent-From: sebastian@bsnrg.net Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 30 Nov 2021 10:09:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 52196 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 52196@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.163826689624555 (code B ref -1); Tue, 30 Nov 2021 10:09:02 +0000 Received: (at submit) by debbugs.gnu.org; 30 Nov 2021 10:08:16 +0000 Received: from localhost ([127.0.0.1]:40226 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms03b-0006Ny-Qo for submit@debbugs.gnu.org; Tue, 30 Nov 2021 05:08:16 -0500 Received: from lists.gnu.org ([209.51.188.17]:40950) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms03a-0006Nr-AN for submit@debbugs.gnu.org; Tue, 30 Nov 2021 05:08:14 -0500 Received: from eggs.gnu.org ([209.51.188.92]:37114) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ms03a-0006xS-6g for bug-gnu-emacs@gnu.org; Tue, 30 Nov 2021 05:08:14 -0500 Received: from out2.migadu.com ([188.165.223.204]:32170) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1ms03W-0005Fj-7u for bug-gnu-emacs@gnu.org; Tue, 30 Nov 2021 05:08:13 -0500 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bsnrg.net; s=key1; t=1638266881; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=5a0q2zBkB1Mr7Q3bVPUrBbN5VKTjafK38L/32CJn2oQ=; b=otPm2LelbtPqhEyFX7g8ncBgkToIcxuuUCpevW16i4m9dxlRqWIdc7DP/Uh+z53aqHmLIj 1Lv8+YOc/imQQXe/U5sXWAwtm7exNAiF3c/rLE1TKVfqEYzBnXrDLxL/8Jk/lc76pbRH9P Map0wCZJeGDgNiJBwgplghVpFIyTEZI= Date: Tue, 30 Nov 2021 10:08:00 +0000 Content-Type: multipart/mixed; boundary="--=_RainLoop_347_410913233.1638266880" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: sebastian@bsnrg.net Message-ID: <75032129e9f7498593fe1b2a93617831@bsnrg.net> X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: sebastian@bsnrg.net Received-SPF: pass client-ip=188.165.223.204; envelope-from=sebastian@bsnrg.net; helo=out2.migadu.com X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.4 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.4 (--) ----=_RainLoop_347_410913233.1638266880 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable I've attached a small C++ program that can be used to reproduce the issue= . I compiled it like so=0A=0Ag++ -g3 main.cc -o test-program=0A=0ASteps t= o reproduce:=0A- emacs -Q=0A- evaluate the forms:=0A(require 'gdb-mi)=0A(= setq gdb-many-windows t)=0A=0A- M-x gdb with argument "gdb -i=3Dmi /path/= to/test-program"=0A- Do "run" in the gdb command prompt=0A- M-x gdb-io-in= terrupt=0A=0AResult: error message in minibuffer "Wrong type argument: st= ringp, nil" (although the command executes normally).=0A=0AFurthermore, i= n this state any of the following will also cause the same message to fla= sh:=0A- doing M-x gud-break in the source buffer=0A- toggling a breakpoin= t in the breakpoint buffer=0A- probably others=0A=0AAlthough again none o= f the commands fail to execute properly.=0A=0ARoot cause:=0A=0AIn the fun= ction gdb-frame-handler the form:=0A=0A(setq gdb-selected-file (file-loca= l-name (gdb-mi--field frame 'fullname)))=0A=0Acauses the error message if= gdb-mi--field returns nil. I don't know if this is an expected return va= lue for that function or not. In any case, file-local-name signals the er= ror in case of nil input. The file-local-name wrapping was introduced sem= i-recently with commit 019c70e731d0243ad3ea2d4ebb02dd4a343e868f.=0A=0ATha= nks.=0A=0A----------------------------------------=0A=0AIn GNU Emacs 28.0= .60 (build 8, x86_64-pc-linux-gnu, GTK+ Version 3.22.30, cairo version 1.= 15.12)=0A of 2021-11-30 built on san=0ARepository revision: 30553d889d733= 613e8e5fd22358980baa7ee148e=0ARepository branch: emacs-28=0AWindowing sys= tem distributor 'The X.Org Foundation', version 11.0.12011000=0ASystem De= scription: CentOS Linux 8=0A=0AConfigured using:=0A 'configure --prefix= =3D/home/snorgaard/emacs-master --with-cairo=0A --with-dumping=3Dpdumper = --with-mailutils --with-json --with-x=0A --with-xwidgets --with-native-co= mpilation=0A --enable-link-time-optimization 'CFLAGS=3D-g3 -O3 -mtune=3Dn= ative=0A -march=3Dnative -fomit-frame-pointer''=0A=0AConfigured features:= =0ACAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GSETTINGS HARFBUZZ JPEG JSON= =0ALCMS2 LIBSELINUX LIBXML2 MODULES NATIVE_COMP NOTIFY INOTIFY PDUMPER PN= G=0ARSVG SECCOMP SOUND THREADS TIFF TOOLKIT_SCROLL_BARS X11 XDBE XIM XPM= =0AXWIDGETS GTK3 ZLIB=0A=0AImportant settings:=0A value of $LANG: en_DK.= UTF-8=0A value of $XMODIFIERS: @im=3Dibus=0A locale-coding-system: utf-= 8-unix=0A=0AMajor mode: C++//l=0A=0AMinor modes in effect:=0A gdb-many-w= indows: 1=0A tooltip-mode: t=0A global-eldoc-mode: t=0A show-paren-mod= e: t=0A electric-indent-mode: t=0A mouse-wheel-mode: t=0A tool-bar-mod= e: t=0A menu-bar-mode: t=0A file-name-shadow-mode: t=0A global-font-lo= ck-mode: t=0A font-lock-mode: t=0A blink-cursor-mode: t=0A auto-compos= ition-mode: t=0A auto-encryption-mode: t=0A auto-compression-mode: t=0A= line-number-mode: t=0A indent-tabs-mode: t=0A transient-mark-mode: t= =0A abbrev-mode: t=0A=0ALoad-path shadows:=0ANone found.=0A=0AFeatures:= =0A(shadow sort mail-extr emacsbug message rmc puny dired dired-loaddefs= =0Arfc822 mml mml-sec epa derived epg rfc6068 epg-config gnus-util rmail= =0Armail-loaddefs auth-source eieio eieio-core eieio-loaddefs=0Apassword-= cache json map text-property-search mm-decode mm-bodies=0Amm-encode mail-= parse rfc2231 mailabbrev gmm-utils mailheader sendmail=0Arfc2047 rfc2045 = ietf-drums mm-util mail-prsvr mail-utils time-date=0Acc-mode cc-fonts cc-= guess cc-menus cc-cmds cc-styles cc-align cc-engine=0Acc-vars cc-defs com= p comp-cstr warnings subr-x rx cl-macs cl-extra=0Ahelp-mode seq byte-opt = gv bytecomp byte-compile cconv gdb-mi cl-seq=0Acl-loaddefs cl-lib gud eas= y-mmode comint ansi-color ring iso-transl=0Atooltip eldoc paren electric = uniquify ediff-hook vc-hooks=0Alisp-float-type elisp-mode mwheel term/x-w= in x-win term/common-win x-dnd=0Atool-bar dnd fontset image regexp-opt fr= inge tabulated-list replace=0Anewcomment text-mode lisp-mode prog-mode re= gister page tab-bar menu-bar=0Arfn-eshadow isearch easymenu timer select = scroll-bar mouse jit-lock=0Afont-lock syntax font-core term/tty-colors fr= ame minibuffer cl-generic=0Acham georgian utf-8-lang misc-lang vietnamese= tibetan thai tai-viet lao=0Akorean japanese eucjp-ms cp51932 hebrew gree= k romanian slovak czech=0Aeuropean ethiopic indian cyrillic chinese compo= site emoji-zwj charscript=0Acharprop case-table epa-hook jka-cmpr-hook he= lp simple abbrev obarray=0Acl-preloaded nadvice button loaddefs faces cus= -face macroexp files=0Awindow text-properties overlay sha1 md5 base64 for= mat env code-pages=0Amule custom widget hashtable-print-readable backquot= e threads=0Axwidget-internal dbusbind inotify lcms2 dynamic-setting=0Asys= tem-font-setting font-render-setting cairo move-toolbar gtk x-toolkit=0Ax= multi-tty make-network-process native-compile emacs)=0A=0AMemory informa= tion:=0A((conses 16 134661 11459)=0A (symbols 48 10813 0)=0A (strings 32 = 31925 1896)=0A (string-bytes 1 1182054)=0A (vectors 16 20650)=0A (vector-= slots 8 362625 14622)=0A (floats 8 46 30)=0A (intervals 56 365 3)=0A (buf= fers 992 19)) ----=_RainLoop_347_410913233.1638266880 Content-Type: application/octet-stream; name="main.cc" Content-Disposition: attachment; filename="main.cc" Content-Transfer-Encoding: base64 I2luY2x1ZGUgPGNocm9ubz4KI2luY2x1ZGUgPGlvc3RyZWFtPgojaW5jbHVkZSA8dGhyZWFk PgoKaW50IG1haW4gKCkKewogIHVzaW5nIG5hbWVzcGFjZSBzdGQ6OmNocm9ub19saXRlcmFs czsKCiAgYXV0byBjb3VudCA9IDA7CiAgZm9yICg7OykgewogICAgKytjb3VudDsKICAgIHN0 ZDo6Y291dCA8PCAiVGhpcyBpcyBtZXNzYWdlOiAiIDw8IGNvdW50IDw8IHN0ZDo6ZW5kbDsK ICAgIHN0ZDo6dGhpc190aHJlYWQ6OnNsZWVwX2ZvcigxMDAwbXMpOwogIH0KfQo= ----=_RainLoop_347_410913233.1638266880-- From unknown Tue Aug 19 05:08:21 2025 X-Loop: help-debbugs@gnu.org Subject: bug#52196: 28.0.60; gdb-mi error message: "wrong type argument: stringp" Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 30 Nov 2021 13:11:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 52196 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: sebastian@bsnrg.net Cc: 52196@debbugs.gnu.org Received: via spool by 52196-submit@debbugs.gnu.org id=B52196.163827783419398 (code B ref 52196); Tue, 30 Nov 2021 13:11:01 +0000 Received: (at 52196) by debbugs.gnu.org; 30 Nov 2021 13:10:34 +0000 Received: from localhost ([127.0.0.1]:40373 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms2u2-00052o-HH for submit@debbugs.gnu.org; Tue, 30 Nov 2021 08:10:34 -0500 Received: from quimby.gnus.org ([95.216.78.240]:41330) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms2u0-00052X-0Q for 52196@debbugs.gnu.org; Tue, 30 Nov 2021 08:10:32 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References: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=e/nwuq8tzIvngeuTIiTxpHqAadhTq2qBOgKNooFB6VM=; b=VHDtYvMOwGxlvPZqdDKFG7d4UK OSrS1DTbU87ZW8DRfEbVRUIQmvmuKYut+3ttLpsx9ecG/FTwGZxywILr3Ytl4hR4vL35iEAp3/zyW uHvLfGnTBwR32zBtESnVVudIU0wbV6WcpLaB6P2hinjvoE/+lrh66cmMcd6kU43yEhTs=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ms2tq-0006OS-Ig; Tue, 30 Nov 2021 14:10:25 +0100 From: Lars Ingebrigtsen References: <75032129e9f7498593fe1b2a93617831@bsnrg.net> X-Now-Playing: Herbert's _Musca_: "Gold Dust feat. Bianca Rose" Date: Tue, 30 Nov 2021 14:10:21 +0100 In-Reply-To: <75032129e9f7498593fe1b2a93617831@bsnrg.net> (sebastian@bsnrg.net's message of "Tue, 30 Nov 2021 10:08:00 +0000") Message-ID: <87ilw9pz5u.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: sebastian@bsnrg.net writes: > In the function gdb-frame-handler the form: > > (setq gdb-selected-file (file-local-name (gdb-mi--field frame 'fullname))) > > causes the error message if gdb-mi--field returns nil. I don't know if [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) 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 (---) sebastian@bsnrg.net writes: > In the function gdb-frame-handler the form: > > (setq gdb-selected-file (file-local-name (gdb-mi--field frame 'fullname))) > > causes the error message if gdb-mi--field returns nil. I don't know if this is an expected return value for that function or not. In any case, file-local-name signals the error in case of nil input. The file-local-name wrapping was introduced semi-recently with commit 019c70e731d0243ad3ea2d4ebb02dd4a343e868f. Thanks for the analysis. I think I've now fixed this in Emacs 28 -- can you pull and rebuild and see whether this works better now? -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Nov 30 08:10:41 2021 Received: (at control) by debbugs.gnu.org; 30 Nov 2021 13:10:42 +0000 Received: from localhost ([127.0.0.1]:40376 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms2u9-000539-P8 for submit@debbugs.gnu.org; Tue, 30 Nov 2021 08:10:41 -0500 Received: from quimby.gnus.org ([95.216.78.240]:41344) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms2u7-00052n-AW for control@debbugs.gnu.org; Tue, 30 Nov 2021 08:10:39 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type: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=Pc75yTSIwRnv6yj2F4Z7vj7fDNi9fmeHqE9o4SLOlS4=; b=ihQJH0aZOWZQJmgCLIBP23dQgD GJnQuJdqgmMtXvvr7J1IjdPfSrC7H7mIikkNNE0txQNFLPR6Q2QYzNBaduNZYhBpnr+VzukqUe33C pRnCHNt9pvCQMVt+FsCk0YFmbozHoy8QYeStcuoM8oQ9HcwtILH3Fn0oufiSWGgg/K0Q=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ms2tv-0006OZ-J5 for control@debbugs.gnu.org; Tue, 30 Nov 2021 14:10:33 +0100 Date: Tue, 30 Nov 2021 14:10:27 +0100 Message-Id: <87h7btpz5o.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #52196 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: tags 52196 + moreinfo quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control 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 (---) tags 52196 + moreinfo quit From unknown Tue Aug 19 05:08:21 2025 X-Loop: help-debbugs@gnu.org Subject: bug#52196: 28.0.60; gdb-mi error message: "wrong type argument: stringp" Resent-From: "Sebastian Arlund =?UTF-8?Q?N=C3=B8rgaard?=" Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 30 Nov 2021 19:41:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 52196 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: moreinfo To: "Lars Ingebrigtsen" Cc: 52196@debbugs.gnu.org Received: via spool by 52196-submit@debbugs.gnu.org id=B52196.16383012159169 (code B ref 52196); Tue, 30 Nov 2021 19:41:01 +0000 Received: (at 52196) by debbugs.gnu.org; 30 Nov 2021 19:40:15 +0000 Received: from localhost ([127.0.0.1]:42556 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms8z9-0002Np-4s for submit@debbugs.gnu.org; Tue, 30 Nov 2021 14:40:15 -0500 Received: from out1.migadu.com ([91.121.223.63]:57865) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms8z6-0002NZ-8o for 52196@debbugs.gnu.org; Tue, 30 Nov 2021 14:40:13 -0500 MIME-Version: 1.0 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=bsnrg.net; s=key1; t=1638301210; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=rGnmpzjsbCQ0vQKK/KLa6enWZ8Zgdz5NdVID57DjUvU=; b=adUaE1P6v5ob4rLxuxEhSUjkvGMJIZ6Sl1jMHiEqQcHX4AX1Ub/JtkVnV0Zo8dSdfhgNQm OmzmaSZkzkHrHwhpXRFRcaNj+rl1RfdfmGnlaELxeZGniHiscm9AO6QELIDkbkhdnEL8fX 4rd8sFsS3E6vFY5dsUljltL79ggIlk0= Date: Tue, 30 Nov 2021 19:40:09 +0000 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. From: "Sebastian Arlund =?UTF-8?Q?N=C3=B8rgaard?=" Message-ID: <9b542ce3fb5beb1285745b29ed8fc3ad@bsnrg.net> In-Reply-To: <87ilw9pz5u.fsf@gnus.org> References: <87ilw9pz5u.fsf@gnus.org> <75032129e9f7498593fe1b2a93617831@bsnrg.net> X-Migadu-Flow: FLOW_OUT X-Migadu-Auth-User: bsnrg.net X-Spam-Score: -0.7 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) >> Thanks for the analysis. I think I've now fixed this in Emacs 28 -- ca= n=0A>> you pull and rebuild and see whether this works better now?=0A=0AY= es, if indeed the nil return value is expected your fix should work just = fine. I've done a quick test and everything looks fine on my end.=0A=0ARe= gards,=0ASebastian From unknown Tue Aug 19 05:08:21 2025 X-Loop: help-debbugs@gnu.org Subject: bug#52196: 28.0.60; gdb-mi error message: "wrong type argument: stringp" Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 30 Nov 2021 20:38:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 52196 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: moreinfo To: Sebastian Arlund =?UTF-8?Q?N=C3=B8rgaard?= Cc: 52196@debbugs.gnu.org Received: via spool by 52196-submit@debbugs.gnu.org id=B52196.163830467715171 (code B ref 52196); Tue, 30 Nov 2021 20:38:01 +0000 Received: (at 52196) by debbugs.gnu.org; 30 Nov 2021 20:37:57 +0000 Received: from localhost ([127.0.0.1]:42620 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms9sy-0003wd-TD for submit@debbugs.gnu.org; Tue, 30 Nov 2021 15:37:57 -0500 Received: from quimby.gnus.org ([95.216.78.240]:45636) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms9sx-0003wJ-3K for 52196@debbugs.gnu.org; Tue, 30 Nov 2021 15:37:55 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Transfer-Encoding:Content-Type:MIME-Version:Message-ID :In-Reply-To:Date:References:Subject:Cc:To:From:Sender:Reply-To: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=NC7pZhadu4HsFNlO62FBeb1LaD1+W0wryBB/clc/UIo=; b=tr0UjcaV+rfJxt0ihgXu+dPZPe pP5RWIZf6E4xMUJtHRhKA91v1x0MyWkoI/lAMuiQV/XE4Wj0S5nZLLLY7YFAX8syOocZ2eNV4mZq6 /fNXucOI73FtA4fnOKHxdDeH2sJ3/UEL73cSO3g2b8KXYazIFBoet+3M7ZbgFFc16wH4=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ms9sn-00012m-3J; Tue, 30 Nov 2021 21:37:47 +0100 From: Lars Ingebrigtsen References: <87ilw9pz5u.fsf@gnus.org> <75032129e9f7498593fe1b2a93617831@bsnrg.net> <9b542ce3fb5beb1285745b29ed8fc3ad@bsnrg.net> Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAABGdBTUEAALGPC/xhBQAAACBj SFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAIVBMVEUEAQF2GyObHSma HCjEfITny6yraUjlsVO6kk7VpFL///8t1ZSiAAAAAWJLR0QKaND0VgAAAAd0SU1FB+ULHhQlFdNK DowAAAFzSURBVDjLdZTbbcMwDEU9QzaoDHQACugCbRZoYQT97YeQDFAwGqCOvEBYbltSkq1H3Bs4 tnV0r16WhuEAxoyjkT8L1lp9Ug3DQW8gPxsFNUgFGYwdsBlIGGQAW1HRCnLuKEk2v2kU/OOQmsdp eqvkviCDqdP7Ck4LcxAtIWrZwEQY5Yl9IOQKsGcmvl/m2cm9d9A9zO68A9Ax84L4ADRflQBUgDlF dsAL4AbYCDx5abcGYCsHVcDaU3QIIK9Pt481SgFp24vHGkB08Bzc+UK+B4z+yixxBVgBUjkE5846 v7faEZwEiS5yCTAlSjOuLOsiPa4c2rZffmWNPBH+FMc6PHUgtQBl0DIOlu52gBTEKSngMy040hKn twOaVjvMBlgduAN8XPAdgMy3fYBpyRvAUXFGmB4d6RupHVI1f9CqDbw0ewDxe3NsW+aY2GsGY7/T IINV7QGQikYoNgMVsNAEVY5iAJvAs2vaMFDOkqe2R+lk+AOku2Nb3+JrKgAAACV0RVh0ZGF0ZTpj cmVhdGUAMjAyMS0xMS0zMFQyMDozNzoyMSswMDowMISpV7QAAAAldEVYdGRhdGU6bW9kaWZ5ADIw MjEtMTEtMzBUMjA6Mzc6MjErMDA6MDD19O8IAAAAAElFTkSuQmCC X-Now-Playing: Coley Jones's _Anthology of American Folk Music Volume 1: Ballads (1)_: "Drunkard's Special" Date: Tue, 30 Nov 2021 21:37:42 +0100 In-Reply-To: <9b542ce3fb5beb1285745b29ed8fc3ad@bsnrg.net> ("Sebastian Arlund =?UTF-8?Q?N=C3=B8rgaard?="'s message of "Tue, 30 Nov 2021 19:40:09 +0000") Message-ID: <875ys9crc9.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/29.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: "Sebastian Arlund =?UTF-8?Q?N=C3=B8rgaard?=" writes: >>> Thanks for the analysis. I think I've now fixed this in Emacs 28 -- can >>> you pull and rebuild and see whether this works better now? > > Yes, if indeed the nil return value is expected your fix [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) 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 (---) "Sebastian Arlund N=C3=B8rgaard" writes: >>> Thanks for the analysis. I think I've now fixed this in Emacs 28 -- can >>> you pull and rebuild and see whether this works better now? > > Yes, if indeed the nil return value is expected your fix should work > just fine. I've done a quick test and everything looks fine on my end. Thanks for checking; I'm closing this bug report, then. --=20 (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue Nov 30 15:38:06 2021 Received: (at control) by debbugs.gnu.org; 30 Nov 2021 20:38:06 +0000 Received: from localhost ([127.0.0.1]:42624 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms9t8-0003xN-3e for submit@debbugs.gnu.org; Tue, 30 Nov 2021 15:38:06 -0500 Received: from quimby.gnus.org ([95.216.78.240]:45650) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ms9t6-0003wm-GC for control@debbugs.gnu.org; Tue, 30 Nov 2021 15:38:04 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type: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=CA17YbMq6UUaXNSjQcpEEG2EnQw0PCCCvEr1p9o4bQE=; b=AYZz4/1m//sm3sthaiqCQkOpwl lEhMUcUB0UuUB9BqRg/N4iMQdO5c1IEBWG3Wni2uXoENVXxKDugBpcdhV9Q30fcfwI0S6rhbkl6Kg aEEZX16UexuIyUxUMlMSNzddZLDcTLXiy1BUR9wrT/6NHI/UDtUo/wU7rtBL17StOp2M=; Received: from [84.212.220.105] (helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ms9sy-00012w-1C for control@debbugs.gnu.org; Tue, 30 Nov 2021 21:37:58 +0100 Date: Tue, 30 Nov 2021 21:37:55 +0100 Message-Id: <874k7tcrbw.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #52196 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.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 @@CONTACT_ADDRESS@@ for details. Content preview: close 52196 29.1 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: -2.3 (--) X-Debbugs-Envelope-To: control 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 (---) close 52196 29.1 quit