From unknown Sun Jun 22 00:05:18 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#48310 <48310@debbugs.gnu.org> To: bug#48310 <48310@debbugs.gnu.org> Subject: Status: 28.0.50; Cannot list the list group Reply-To: bug#48310 <48310@debbugs.gnu.org> Date: Sun, 22 Jun 2025 07:05:18 +0000 retitle 48310 28.0.50; Cannot list the list group reassign 48310 emacs submitter 48310 Jean Louis severity 48310 normal tag 48310 moreinfo thanks From debbugs-submit-bounces@debbugs.gnu.org Sun May 09 07:24:10 2021 Received: (at submit) by debbugs.gnu.org; 9 May 2021 11:24:10 +0000 Received: from localhost ([127.0.0.1]:55364 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfhXd-0002KV-VY for submit@debbugs.gnu.org; Sun, 09 May 2021 07:24:10 -0400 Received: from lists.gnu.org ([209.51.188.17]:44550) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfhXa-0002KP-Ly for submit@debbugs.gnu.org; Sun, 09 May 2021 07:24:09 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:40750) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lfhXa-0003AE-G3 for bug-gnu-emacs@gnu.org; Sun, 09 May 2021 07:24:06 -0400 Received: from stw1.rcdrun.com ([217.170.207.13]:33413) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1lfhXV-00084l-3q for bug-gnu-emacs@gnu.org; Sun, 09 May 2021 07:24:02 -0400 Received: from localhost ([::ffff:102.84.101.70]) (AUTH: PLAIN securesender, TLS: TLS1.3,256bits,ECDHE_RSA_AES_256_GCM_SHA384) by stw1.rcdrun.com with ESMTPSA id 00000000000ABF0D.000000006097C62F.00002D9D; Sun, 09 May 2021 04:23:26 -0700 From: Jean Louis To: bug-gnu-emacs@gnu.org Subject: 28.0.50; Cannot list the list group Date: Sun, 09 May 2021 14:22:37 +0300 Message-ID: <86sg2w6tj6.fsf@protected.rcdrun.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Received-SPF: pass client-ip=217.170.207.13; envelope-from=admin@protected.rcdrun.com; helo=stw1.rcdrun.com X-Spam_score_int: -16 X-Spam_score: -1.7 X-Spam_bar: - X-Spam_report: (-1.7 / 5.0 requ) BAYES_00=-1.9, HEADER_FROM_DIFFERENT_DOMAINS=0.249, SPF_HELO_PASS=-0.001, SPF_PASS=-0.001 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.2 (-) 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: -2.2 (--) I cannot repeat this in emacs -Q, this takes place in my running Emacs session: I do: C-h f list and inside I go with cursor to the hyperlinked `list` followed by the word "group". I press enter, and I get this: (lax-plist-put plist prop val) Change value in PLIST of PROP to VAL, comparing with =E2=80=98equal=E2=80= =99. (setq plist (plist-put plist "d" 4)) (plist-member plist prop) Return non-nil if PLIST has the property PROP. (plist-member '(a 1 b 2 c 3) 'b) =E2=87=92 (b 2 c 3) Data About Lists (length sequence) Return the length of vector, list or string SEQUENCE. (length '(a b c)) =E2=87=92 3 (length<) ----------- HERE IS WHERE LISTING STOPS WITH ERROR: Debugger entered--Lisp error: (wrong-type-argument stringp nil) string-match("\n" nil 0) split-string(nil "\n") shortdoc--display-function((length< :eval (length< '(a b c) 1))) #f(compiled-function (data) #)((length< :eval = (length< '(a b c) 1))) mapc(#f(compiled-function (data) #) ("Making L= ists" (make-list :eval (make-list 5 'a)) (cons :eval (cons 1 '(2 3 4))) (li= st :eval (list 1 2 3)) (number-sequence :eval (number-sequence 5 8)) "Opera= tions on Lists" (append :eval (append '("foo" "bar") '("zot"))) (copy-tree = :eval (copy-tree '(1 (2 3) 4))) (flatten-tree :eval (flatten-tree '(1 (2 3)= 4))) (car :eval (car '(one two three))) (cdr :eval (cdr '(one two three)))= (last :eval (last '(one two three))) (butlast :eval (butlast '(one two thr= ee))) (nbutlast :eval (nbutlast (list 'one 'two 'three))) (nth :eval (nth 1= '(one two three))) (nthcdr :eval (nthcdr 1 '(one two three))) (elt :eval (= elt '(one two three) 1)) (car-safe :eval (car-safe '(one two three))) (cdr-= safe :eval (cdr-safe '(one two three))) (push :no-eval* (push 'a list)) (po= p :no-eval* (pop list)) (setcar :no-eval (setcar list 'c) :result c) (setcd= r :no-eval (setcdr list (list c)) :result '(c)) (nconc :eval (nconc (list 1= ) (list 2 3 4))) (delq :eval (delq 2 (list 1 2 3 4)) :eval (delq "a" (list = "a" "b" "c" "d"))) (delete :eval (delete 2 (list 1 2 3 4)) :eval (delete "a= " (list "a" "b" "c" "d"))) (remove :eval (remove 2 '(1 2 3 4)) :eval (remov= e "a" '("a" "b" "c" "d"))) (delete-dups :eval (delete-dups (list 1 2 4 3 2 = 4))) "Mapping Over Lists" (mapcar :eval (mapcar #'list '(1 2 3))) (mapcan := eval (mapcan #'list '(1 2 3))) (mapc :eval (mapc #'insert '("1" "2" "3"))) = (reduce :eval (reduce #'+ '(1 2 3))) (mapconcat :eval (mapconcat #'identity= '("foo" "bar") "|")) "Predicates" (listp :eval (listp '(1 2 3)) :eval (lis= tp nil) :eval (listp '(1 . 2))) (consp :eval (consp '(1 2 3)) :eval (consp = nil)) (proper-list-p :eval (proper-list-p '(1 2 3)) :eval (proper-list-p ni= l) :eval (proper-list-p '(1 . 2))) (null :eval (null nil)) (atom :eval (ato= m 'a)) (nlistp :eval (nlistp '(1 2 3)) :eval (nlistp t) :eval (nlistp '(1 .= 2))) "Finding Elements" (memq :eval (memq 2 '(1 2 3)) :eval (memq 2.0 '(1.= 0 2.0 3.0)) :eval (memq "b" '("a" "b" "c"))) (member :eval (member 2 '(1 2 = 3)) :eval (member "b" '("a" "b" "c"))) (remq :eval (remq 2 '(1 2 3 2 4 2)) = :eval (remq "b" '("a" "b" "c"))) (memql :eval (memql 2.0 '(1.0 2.0 3.0))) (= member-ignore-case :eval (member-ignore-case "foo" '("bar" "Foo" "zot"))) "= Association Lists" (assoc :eval (assoc 'b '((a 1) (b 2)))) (rassoc :eval (r= assoc '2 '((a . 1) (b . 2)))) ...)) shortdoc-display-group(list) #f(compiled-function (_) #)(#) button-activate(# nil) push-button(119) funcall-interactively(push-button 119) call-interactively(push-button nil nil) command-execute(push-button) In GNU Emacs 28.0.50 (build 1, x86_64-pc-linux-gnu, X toolkit, cairo versio= n 1.17.4, Xaw3d scroll bars) of 2021-05-02 built on protected.rcdrun.com Repository revision: f1adb6b77a948e4f2f3223940edb15e56c30466d Repository branch: master Windowing system distributor 'The X.Org Foundation', version 11.0.12010000 System Description: Parabola GNU/Linux-libre Configured using: 'configure --prefix=3D/package/text/emacs --with-x-toolkit=3Dlucid' Configured features: ACL CAIRO DBUS FREETYPE GIF GLIB GMP GNUTLS GPM GSETTINGS HARFBUZZ JPEG JSON LCMS2 LIBOTF LIBSYSTEMD LIBXML2 M17N_FLT MODULES NOTIFY INOTIFY PDUMPER PNG RSVG SECCOMP SOUND THREADS TIFF TOOLKIT_SCROLL_BARS X11 XAW3D XDBE XIM XPM LUCID ZLIB Important settings: value of $LC_ALL: en_US.UTF-8 value of $LANG: de_DE.UTF-8 value of $XMODIFIERS: @im=3Dexwm-xim locale-coding-system: utf-8-unix Major mode: Lisp Interaction Minor modes in effect: tooltip-mode: t global-eldoc-mode: t eldoc-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 epg-config gnus-util rmail rmail-loaddefs auth-source cl-seq eieio eieio-core cl-macs eieio-loaddefs password-cache json map text-property-search time-date subr-x seq byte-opt gv bytecomp byte-compile cconv mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader cl-loaddefs cl-lib sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils iso-transl tooltip eldoc electric uniquify ediff-hook vc-hooks lisp-float-type 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 elisp-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 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 x-toolkit x multi-tty make-network-process emacs) Memory information: ((conses 16 54598 6961) (symbols 48 7125 3) (strings 32 19950 2246) (string-bytes 1 637364) (vectors 16 14082) (vector-slots 8 181945 10200) (floats 8 23 47) (intervals 56 240 0) (buffers 992 11)) --=20 Thanks, Jean Louis Take action in Free Software Foundation campaigns: https://www.fsf.org/campaigns From debbugs-submit-bounces@debbugs.gnu.org Sun May 09 08:31:25 2021 Received: (at 48310) by debbugs.gnu.org; 9 May 2021 12:31:25 +0000 Received: from localhost ([127.0.0.1]:55401 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfiai-0005Ck-PI for submit@debbugs.gnu.org; Sun, 09 May 2021 08:31:24 -0400 Received: from mail-out.m-online.net ([212.18.0.10]:50330) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lfiag-0005Ce-4s for 48310@debbugs.gnu.org; Sun, 09 May 2021 08:31:22 -0400 Received: from frontend01.mail.m-online.net (unknown [192.168.8.182]) by mail-out.m-online.net (Postfix) with ESMTP id 4FdNpJ4n7Mz1s0tc; Sun, 9 May 2021 14:31:20 +0200 (CEST) Received: from localhost (dynscan1.mnet-online.de [192.168.6.70]) by mail.m-online.net (Postfix) with ESMTP id 4FdNpJ2WCRz1qvyW; Sun, 9 May 2021 14:31:20 +0200 (CEST) X-Virus-Scanned: amavisd-new at mnet-online.de Received: from mail.mnet-online.de ([192.168.8.182]) by localhost (dynscan1.mail.m-online.net [192.168.6.70]) (amavisd-new, port 10024) with ESMTP id nIcyBCSbJmqI; Sun, 9 May 2021 14:31:19 +0200 (CEST) X-Auth-Info: /NjRSepN4ccqaIL5+zLy5YW8fbXFbIz69L+/FVr/SErAYaMWlDWq70FV+XLomeFd Received: from igel.home (ppp-46-244-168-47.dynamic.mnet-online.de [46.244.168.47]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.mnet-online.de (Postfix) with ESMTPSA; Sun, 9 May 2021 14:31:19 +0200 (CEST) Received: by igel.home (Postfix, from userid 1000) id 95FA82C35E0; Sun, 9 May 2021 14:31:18 +0200 (CEST) From: Andreas Schwab To: Jean Louis Subject: Re: bug#48310: 28.0.50; Cannot list the list group References: <86sg2w6tj6.fsf@protected.rcdrun.com> X-Yow: I am having a CONCEPTION-- Date: Sun, 09 May 2021 14:31:18 +0200 In-Reply-To: <86sg2w6tj6.fsf@protected.rcdrun.com> (Jean Louis's message of "Sun, 09 May 2021 14:22:37 +0300") Message-ID: <875yzsxf55.fsf@igel.home> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: -0.5 (/) X-Debbugs-Envelope-To: 48310 Cc: 48310@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: -1.5 (-) On Mai 09 2021, Jean Louis wrote: > ----------- HERE IS WHERE LISTING STOPS WITH ERROR: > > Debugger entered--Lisp error: (wrong-type-argument stringp nil) > string-match("\n" nil 0) I cannot reproduce that. Did you try make bootstrap yet? Andreas. -- Andreas Schwab, schwab@linux-m68k.org GPG Key fingerprint = 7578 EB47 D4E5 4D69 2510 2552 DF73 E780 A9DA AEC1 "And now for something completely different." From debbugs-submit-bounces@debbugs.gnu.org Tue May 11 08:55:48 2021 Received: (at 48310) by debbugs.gnu.org; 11 May 2021 12:55:48 +0000 Received: from localhost ([127.0.0.1]:35313 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lgRvP-0001Oy-P5 for submit@debbugs.gnu.org; Tue, 11 May 2021 08:55:48 -0400 Received: from quimby.gnus.org ([95.216.78.240]:46388) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lgRvM-0001Oh-TS for 48310@debbugs.gnu.org; Tue, 11 May 2021 08:55:45 -0400 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=7B5IRhFJRfdxSWjuVh8xkY8sDfks4hDUV65fkrcg3pM=; b=ZkR3x0vdMojq66DQsUlSCBdsZA HW2wAcMabA0USmlIlD9tiX7Xgot4S7aTV4mI0gaOkacN0zkfN8ABVV8rcYtItxJoE2/PCgHRjK+Ci ejQisNPJbR3v/BRUJL89C+LSlx9Vv1w8sSptxuUAP0kgd375EIu3xVhnf7/qTxcrfB4k=; Received: from cm-84.212.220.105.getinternet.no ([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 1lgRvE-00053t-OT; Tue, 11 May 2021 14:55:39 +0200 From: Lars Ingebrigtsen To: Jean Louis Subject: Re: bug#48310: 28.0.50; Cannot list the list group References: <86sg2w6tj6.fsf@protected.rcdrun.com> X-Now-Playing: Coil's _Love's Secret Domain (1)_: "Chaostrophy" Date: Tue, 11 May 2021 14:55:36 +0200 In-Reply-To: <86sg2w6tj6.fsf@protected.rcdrun.com> (Jean Louis's message of "Sun, 09 May 2021 14:22:37 +0300") Message-ID: <871radpgzb.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.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: Jean Louis writes: > Debugger entered--Lisp error: (wrong-type-argument stringp nil) > string-match("\n" nil 0) > split-string(nil "\n") > shortdoc--display-function((length< :eval (length< '(a b c) 1))) 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: 0.0 (/) X-Debbugs-Envelope-To: 48310 Cc: 48310@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: -1.0 (-) Jean Louis writes: > Debugger entered--Lisp error: (wrong-type-argument stringp nil) > string-match("\n" nil 0) > split-string(nil "\n") > shortdoc--display-function((length< :eval (length< '(a b c) 1))) This can only happen if (documentation 'length<) returns nil, which shouldn't be possible. So I think you have a mis-built Emacs. Try saying "make bootstrap" or the like. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Tue May 11 08:55:50 2021 Received: (at control) by debbugs.gnu.org; 11 May 2021 12:55:50 +0000 Received: from localhost ([127.0.0.1]:35318 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lgRvS-0001PK-Hn for submit@debbugs.gnu.org; Tue, 11 May 2021 08:55:50 -0400 Received: from quimby.gnus.org ([95.216.78.240]:46402) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lgRvR-0001Oo-Ks for control@debbugs.gnu.org; Tue, 11 May 2021 08:55:49 -0400 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=H6LD0IeiSjR53TM3+a/aqMsuDbpDndJQWoWZcYj+IEw=; b=lXWHqKNdctLpkqwWc8DiaBbJuC qeBeOXSo3MkI6Hogltv3kxR8RC0kHmejO/+woXVpxdpgnU9JywXGfFQywWFnZqU2bG86Bk9XKYSNw Tw5JiAhUhYK3hx8u/h/7KoNINsNgVxCe9OE/sPUdLPmMXJ/lst2g9grcz1V5Xhj+ORTo=; Received: from cm-84.212.220.105.getinternet.no ([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 1lgRvK-000542-3v for control@debbugs.gnu.org; Tue, 11 May 2021 14:55:44 +0200 Date: Tue, 11 May 2021 14:55:41 +0200 Message-Id: <87zgx1o2eq.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #48310 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 48310 + 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: 0.0 (/) 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: -1.0 (-) tags 48310 + moreinfo quit From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 09 06:31:26 2021 Received: (at 48310) by debbugs.gnu.org; 9 Jun 2021 10:31:26 +0000 Received: from localhost ([127.0.0.1]:60566 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lqvUc-0000gg-3v for submit@debbugs.gnu.org; Wed, 09 Jun 2021 06:31:26 -0400 Received: from quimby.gnus.org ([95.216.78.240]:36194) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lqvUY-0000Yd-K8 for 48310@debbugs.gnu.org; Wed, 09 Jun 2021 06:31:24 -0400 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=lPQlLhBVgL/Ct+XnIPIF6oRWbs7Pg47EcyTF+iEHH1w=; b=J1LI2Z+8vG5904tGQXaaRwopFu DcGjMTf5B7EWvoA7u3HAFXaUQwKUkw+/9xbsCefJGsjhyQDbMt07LH1buCLK6/iVw15pNetd1MB3z zQX33p1Pwg4g/Bp227VKdgFWwDuZ2BJ6b3oCIFXokfKiQ+YQxfLtZG4QI02j6efiFMao=; Received: from cm-84.212.220.105.getinternet.no ([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 1lqvUP-0002tH-PR; Wed, 09 Jun 2021 12:31:16 +0200 From: Lars Ingebrigtsen To: Jean Louis Subject: Re: bug#48310: 28.0.50; Cannot list the list group References: <86sg2w6tj6.fsf@protected.rcdrun.com> <871radpgzb.fsf@gnus.org> X-Now-Playing: 13 & God's _Own Your Ghost_: "Oldage" Date: Wed, 09 Jun 2021 12:31:13 +0200 In-Reply-To: <871radpgzb.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 11 May 2021 14:55:36 +0200") Message-ID: <87eedbl47i.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.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: Lars Ingebrigtsen writes: > This can only happen if (documentation 'length<) returns nil, which > shouldn't be possible. So I think you have a mis-built Emacs. Try > saying "make bootstrap" or the like. 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: -0.7 (/) X-Debbugs-Envelope-To: 48310 Cc: 48310@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: -1.7 (-) Lars Ingebrigtsen writes: > This can only happen if (documentation 'length<) returns nil, which > shouldn't be possible. So I think you have a mis-built Emacs. Try > saying "make bootstrap" or the like. This was a month ago, and there was no response, so I'm closing this bug report. If the problem still exists, please respond to this email and we'll reopen the bug report. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed Jun 09 06:31:29 2021 Received: (at control) by debbugs.gnu.org; 9 Jun 2021 10:31:29 +0000 Received: from localhost ([127.0.0.1]:60569 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lqvUf-0000jw-Dm for submit@debbugs.gnu.org; Wed, 09 Jun 2021 06:31:29 -0400 Received: from quimby.gnus.org ([95.216.78.240]:36208) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1lqvUd-0000dt-UE for control@debbugs.gnu.org; Wed, 09 Jun 2021 06:31:28 -0400 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=SYzKImLRaGu35jMx/1ZHZT3ffXe+MSvJPcTnUTXV7E4=; b=hZFnJIC96Y5kpg9ZAKdWmTd4do 8du4vgtJ6UCW+viNiUcd83LXqgCQ9TacagK5HxnKOF5xNJ1IWUTjpmB01MOh/l2XC3GO7CCxzPY0W o2dE7ifAfQHOmTuO3F/qDPlScdTiHdCwpA5Efm0g55LoDpiVzupb0RGXfdMVKDtmTEjY=; Received: from cm-84.212.220.105.getinternet.no ([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 1lqvUW-0002tO-HN for control@debbugs.gnu.org; Wed, 09 Jun 2021 12:31:22 +0200 Date: Wed, 09 Jun 2021 12:31:20 +0200 Message-Id: <87czsvl47b.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #48310 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 48310 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: -0.7 (/) 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: -1.7 (-) close 48310 quit From unknown Sun Jun 22 00:05:18 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Wed, 07 Jul 2021 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator