From unknown Sun Aug 17 22:02:05 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#36227 <36227@debbugs.gnu.org> To: bug#36227 <36227@debbugs.gnu.org> Subject: Status: 26.1; sgml-mode indents as comment inside of -- text blocks Reply-To: bug#36227 <36227@debbugs.gnu.org> Date: Mon, 18 Aug 2025 05:02:05 +0000 retitle 36227 26.1; sgml-mode indents as comment inside of -- text blocks reassign 36227 emacs submitter 36227 Akkana Peck severity 36227 minor tag 36227 confirmed fixed thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 15 14:02:38 2019 Received: (at submit) by debbugs.gnu.org; 15 Jun 2019 18:02:38 +0000 Received: from localhost ([127.0.0.1]:39180 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hcD0e-0007FF-Jc for submit@debbugs.gnu.org; Sat, 15 Jun 2019 14:02:37 -0400 Received: from lists.gnu.org ([209.51.188.17]:58548) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hcD0c-0007F5-Cb for submit@debbugs.gnu.org; Sat, 15 Jun 2019 14:02:35 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:37339) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hcD0a-00051G-Rw for bug-gnu-emacs@gnu.org; Sat, 15 Jun 2019 14:02:34 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,URIBL_BLOCKED autolearn=disabled version=3.3.2 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hcD0Z-0005M1-Ed for bug-gnu-emacs@gnu.org; Sat, 15 Jun 2019 14:02:32 -0400 Received: from www.shallowsky.com ([71.19.149.191]:48294 helo=shallowsky.com) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hcD0Z-0005I0-6D for bug-gnu-emacs@gnu.org; Sat, 15 Jun 2019 14:02:31 -0400 Received: from shallowsky.com (unknown [97.123.107.255]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by shallowsky.com (Postfix) with ESMTPSA id 4EAFD12F658 for ; Sat, 15 Jun 2019 12:02:21 -0600 (MDT) Date: Sat, 15 Jun 2019 12:02:18 -0600 From: Akkana Peck To: bug-gnu-emacs@gnu.org Subject: 26.1; sgml-mode indents as comment inside of -- text blocks Message-ID: <20190615180218.GC1232@shallowsky.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.10.1 (2018-07-13) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 71.19.149.191 X-Spam-Score: -1.3 (-) 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.3 (--) In emacs -Q, edit a file in html-mode (derived from sgml-mode), e.g. visit /tmp/foo.html. M-x auto-fill-mode Type some nonsense words with ' -- ' in the middle, like this: asd shdf ladshjkl sjdk -- asdfh jklsdfh and keep typing until it wraps. sgml-mode will wrap adding unwanted extra dashes and indentations, like this: asd shdf ladshjkl sjdk -- asdfh jklsdfh jasdklf hjsdkl hjsdaklf sdf -- -- jkldsfhj kalshfjkasdlfh jaksd This happens because sgml-mode is confused about what constitutes a comment in sgml/html. At some point, someone clearly agreed that this was a bug and tried to fix it. If you look at the sgml.el source and search for --, you'll see comments like: > (defvar sgml-specials '(?\") > "List of characters that have a special meaning for SGML mode. > This list is used when first loading the `sgml-mode' library. > The supported characters and potential disadvantages are: > > ?\\\" Makes \" in text start a string. > ?\\=' Makes \\=' in text start a string. > ?- Makes -- in text start a comment. > > When only one of ?\\\" or ?\\=' are included, \"\\='\" or \\='\"\\=', as can be found in > DTDs, start a string. To partially avoid this problem this also makes these > self insert as named entities depending on `sgml-quick-keys'. > > Including ?- has the problem of affecting dashes that have nothing to do > with comments, so we normally turn it off.") The dash is not included in sgml-specials by default, but the problem affecting dashes that have nothing to do with comments happens anyway. Setting sgml-specials to nil in the mode hook doesn't help either. The problematic behavior seems to come from comment-line-break-function. One workaround I've found is to add this in my html-mode and sgml-mode hooks to prevent the special processing of line breaks inside comments: (kill-local-variable 'comment-line-break-function) Maybe comment-line-break-function should check sgml-specials and return without doing anything if - isn't one of the specials? In GNU Emacs 26.1 (build 2, x86_64-pc-linux-gnu, GTK+ Version 3.24.4) of 2019-02-03, modified by Debian built on zam904 Windowing system distributor 'The X.Org Foundation', version 11.0.12004000 System Description: Debian GNU/Linux 10 (buster) Recent messages: For information about GNU Emacs and the GNU system, type C-h C-a. Configured using: 'configure --build x86_64-linux-gnu --prefix=/usr --sharedstatedir=/var/lib --libexecdir=/usr/lib --localstatedir=/var/lib --infodir=/usr/share/info --mandir=/usr/share/man --enable-libsystemd --with-pop=yes --enable-locallisppath=/etc/emacs:/usr/local/share/emacs/26.1/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/26.1/site-lisp:/usr/share/emacs/site-lisp --with-sound=alsa --without-gconf --with-mailutils --build x86_64-linux-gnu --prefix=/usr --sharedstatedir=/var/lib --libexecdir=/usr/lib --localstatedir=/var/lib --infodir=/usr/share/info --mandir=/usr/share/man --enable-libsystemd --with-pop=yes --enable-locallisppath=/etc/emacs:/usr/local/share/emacs/26.1/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/26.1/site-lisp:/usr/share/emacs/site-lisp --with-sound=alsa --without-gconf --with-mailutils --with-x=yes --with-x-toolkit=gtk3 --with-toolkit-scroll-bars 'CFLAGS=-g -O2 -fdebug-prefix-map=/build/emacs-26.1+1=. -fstack-protector-strong -Wformat -Werror=format-security -Wall' 'CPPFLAGS=-Wdate-time -D_FORTIFY_SOURCE=2' LDFLAGS=-Wl,-z,relro' Configured features: XPM JPEG TIFF GIF PNG RSVG IMAGEMAGICK SOUND GPM DBUS GSETTINGS NOTIFY ACL LIBSELINUX GNUTLS LIBXML2 FREETYPE M17N_FLT LIBOTF XFT ZLIB TOOLKIT_SCROLL_BARS GTK3 X11 THREADS LIBSYSTEMD LCMS2 Important settings: value of $LC_COLLATE: C value of $LANG: en_US.UTF-8 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 seq byte-opt gv bytecomp byte-compile cconv cl-loaddefs cl-lib dired dired-loaddefs format-spec rfc822 mml easymenu mml-sec password-cache epa derived epg epg-config gnus-util rmail rmail-loaddefs mm-decode mm-bodies mm-encode mail-parse rfc2231 mailabbrev gmm-utils mailheader sendmail rfc2047 rfc2045 ietf-drums mm-util mail-prsvr mail-utils elec-pair time-date mule-util 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 menu-bar rfn-eshadow isearch timer select scroll-bar mouse jit-lock font-lock syntax facemenu font-core term/tty-colors frame 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 minibuffer cl-preloaded nadvice loaddefs button faces cus-face macroexp files text-properties overlay sha1 md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote dbusbind inotify lcms2 dynamic-setting system-font-setting font-render-setting move-toolbar gtk x-toolkit x multi-tty make-network-process emacs) Memory information: ((conses 16 95390 8152) (symbols 48 20395 1) (miscs 40 45 93) (strings 32 28323 1158) (string-bytes 1 740749) (vectors 16 14651) (vector-slots 8 497220 10982) (floats 8 49 68) (intervals 56 262 0) (buffers 992 11)) From debbugs-submit-bounces@debbugs.gnu.org Sat Jun 15 19:59:41 2019 Received: (at 36227) by debbugs.gnu.org; 15 Jun 2019 23:59:41 +0000 Received: from localhost ([127.0.0.1]:39419 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hcIaC-0007t9-OO for submit@debbugs.gnu.org; Sat, 15 Jun 2019 19:59:41 -0400 Received: from mail-io1-f45.google.com ([209.85.166.45]:38955) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1hcIa8-0007si-CR; Sat, 15 Jun 2019 19:59:39 -0400 Received: by mail-io1-f45.google.com with SMTP id r185so7778325iod.6; Sat, 15 Jun 2019 16:59:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version; bh=Ag/lPE9hrMPHYz/M3VE0Tvbv5KrtVFySNEdo7ZFErBc=; b=kngAWBiRaXCQ84V1Z7QE9wJmHnjNYfbXlt4MJ8DjI0JhkxzmFaelkrhoy4TgAwwYRR 4cO0V+lzxiNc0HdmWblFN6XLhuK4Lsq0CajVc0ts4lWyZogvQRzGViF1FTP8nuEFEm2z jbr6wedaZJ2d2G/oxNZFU/yDY2aTyNHpp282VMuSTUtdZCwyOiQuE3LYo59ZmlVUpuHX PwmZr3cCj2IHkOvyBNlQg7T3lu505j+1Y7Fe9aOr/7T9l1w3Wi+t9UJMmSgp2RTgEnaM d37h3lZDbnaxJHxtiLoHPciSDsOceIZyuBj/uYswK3jIg7XYo1UVvg+Z0r0D4PGqj3yb 5iQA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version; bh=Ag/lPE9hrMPHYz/M3VE0Tvbv5KrtVFySNEdo7ZFErBc=; b=gYoHOvfMCglh8P9dO8TLYuqMN9G6kaMH/RWhXnjp/wAGAZqssC98WQ8tt08qv2a+yc Jw+1wYfATevMPXnWGXil7fkS1LXYq2x+UIjEVjoheNNA6Ts9MGheSckLqG2NpgfP6l0b WW4GSWrIgbFx0z+GYNnKYyKqXcnjEPWZVY00mNDtCxcB/g061VBGog/HYKmm0BhgtLBt 7Z/lTeFP8fkSFK1GlOQLkJRua+e53Aoe5WRh/rCQ6QnxV9odIkEUJ/tEi7mEbQ/apc7R Srx4xo+ADtXj/z9BNE5Ei0ZkKfbih5XuJSSUm3HhBOqovcaT7MVm2jqFlN7pB+SPi0zf nFUw== X-Gm-Message-State: APjAAAUoeeHeUEmoBJpoeGOeQrJb9UPP53SOMKcrBcJuVQdbqUBVBT2P eO4OyELFaoxDWFhcDwSyq5DrsZtr X-Google-Smtp-Source: APXvYqxG9NCUUrernyVNihWahdy0J+UWDcN8Kz6FMVI/LoagZExzH+UiM8gY1oPdZblr+LpK0PilZg== X-Received: by 2002:a6b:7909:: with SMTP id i9mr39136854iop.8.1560643170475; Sat, 15 Jun 2019 16:59:30 -0700 (PDT) Received: from minid (cbl-45-2-119-34.yyz.frontiernetworks.ca. [45.2.119.34]) by smtp.gmail.com with ESMTPSA id t19sm5361512iog.41.2019.06.15.16.59.29 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Sat, 15 Jun 2019 16:59:30 -0700 (PDT) From: Noam Postavsky To: Akkana Peck Subject: Re: bug#36227: 26.1; sgml-mode indents as comment inside of -- text blocks References: <20190615180218.GC1232@shallowsky.com> Date: Sat, 15 Jun 2019 19:59:29 -0400 In-Reply-To: <20190615180218.GC1232@shallowsky.com> (Akkana Peck's message of "Sat, 15 Jun 2019 12:02:18 -0600") Message-ID: <87sgsaxuvy.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 36227 Cc: 36227@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 (-) severity 36227 minor tags 36227 + confirmed quit Akkana Peck writes: > In emacs -Q, edit a file in html-mode (derived from sgml-mode), > e.g. visit /tmp/foo.html. > > M-x auto-fill-mode > > Type some nonsense words with ' -- ' in the middle, like this: > > asd shdf ladshjkl sjdk -- asdfh jklsdfh > > and keep typing until it wraps. > > sgml-mode will wrap adding unwanted extra dashes and indentations, > like this: > > asd shdf ladshjkl sjdk -- asdfh jklsdfh jasdklf hjsdkl hjsdaklf sdf -- > -- jkldsfhj kalshfjkasdlfh jaksd > The problematic behavior seems to come from comment-line-break-function. > One workaround I've found is to add this in my html-mode and sgml-mode > hooks to prevent the special processing of line breaks inside comments: > > (kill-local-variable 'comment-line-break-function) > > Maybe comment-line-break-function should check sgml-specials and return > without doing anything if - isn't one of the specials? It's not to do with the sgml-specials, the problem is that the standard auto-fill-function, `do-auto-fill', calls `default-indent-new-line' which calls `comment-line-break-function' regardless of whether point is inside a comment or not. As far as I can tell, it works in most modes because they disable auto-filling outside of comments in the first place. sgml-mode doesn't, because most of its non-comment text is just plain text that should be filled normally. So I think there should be a sgml-mode specific comment-line-break-function, which checks whether it's in a comment or not (presumably using syntax-ppss). From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 01 04:43:04 2021 Received: (at 36227) by debbugs.gnu.org; 1 Feb 2021 09:43:04 +0000 Received: from localhost ([127.0.0.1]:58879 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l6Vjb-0008A3-ST for submit@debbugs.gnu.org; Mon, 01 Feb 2021 04:43:04 -0500 Received: from quimby.gnus.org ([95.216.78.240]:47006) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l6Vja-00089Y-Ls for 36227@debbugs.gnu.org; Mon, 01 Feb 2021 04:43:03 -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=yHiP47fgm22UK9U/lcEJaAZLZLExE5agMqn4dR83dok=; b=UfBkMw/Vigm+Ps0VOdjxDXGirX 1xW23kek3t0DMkbeFzLZ/pol+D8n51lxw6SkvhRgtTDw97ss1eHka7rqlOSIE5yXu7uy/tfv6cZvf eyufh7tmrdhTC3jz63IErTw7uMXl4Ypu5VHHkuo4v0u8CNLKDWbt4OKyFUYW0fvZ9vMs=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1l6VjR-0007g0-4O; Mon, 01 Feb 2021 10:42:55 +0100 From: Lars Ingebrigtsen To: Noam Postavsky Subject: Re: bug#36227: 26.1; sgml-mode indents as comment inside of -- text blocks References: <20190615180218.GC1232@shallowsky.com> <87sgsaxuvy.fsf@gmail.com> X-Now-Playing: House and Land's _Across the Field_: "Two Sisters" Date: Mon, 01 Feb 2021 10:42:52 +0100 In-Reply-To: <87sgsaxuvy.fsf@gmail.com> (Noam Postavsky's message of "Sat, 15 Jun 2019 19:59:29 -0400") Message-ID: <878s88p1ib.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: Noam Postavsky writes: > So I think there should be a sgml-mode specific > comment-line-break-function, which checks whether it's in a comment or > not (presumably using syntax-ppss). 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: 36227 Cc: 36227@debbugs.gnu.org, Akkana Peck 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 (-) Noam Postavsky writes: > So I think there should be a sgml-mode specific > comment-line-break-function, which checks whether it's in a comment or > not (presumably using syntax-ppss). I've now done this in Emacs 28, and it seems to work correctly in the scenario described. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Mon Feb 01 04:43:09 2021 Received: (at control) by debbugs.gnu.org; 1 Feb 2021 09:43:09 +0000 Received: from localhost ([127.0.0.1]:58882 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l6Vjg-0008AM-T3 for submit@debbugs.gnu.org; Mon, 01 Feb 2021 04:43:09 -0500 Received: from quimby.gnus.org ([95.216.78.240]:47024) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1l6Vjf-00089w-Qz for control@debbugs.gnu.org; Mon, 01 Feb 2021 04:43:08 -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=D+oCtXpnXUZ2rEjAbrJlaSmcEoDJoajyLT81PnC0zB4=; b=WLn8RmWrcd1nQapDdZfi3clT5S VPjsHfEBY01AhZO/l3wmD4QF4/AX6UysQeuE9CxoOcfS4fmRju4FvAqQrcI6asoxyMO2rJ4fr/juM CZB1PDfVPhjePjmvr2+va92fMXtaMbMU5Ti3nywIt/8tcX7984Mr3a5KxVaZieW31oqo=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby.gnus.org with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1l6VjY-0007gA-9p for control@debbugs.gnu.org; Mon, 01 Feb 2021 10:43:02 +0100 Date: Mon, 01 Feb 2021 10:42:59 +0100 Message-Id: <877dnsp1i4.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #36227 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 36227 fixed close 36227 28.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: 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 36227 fixed close 36227 28.1 quit From unknown Sun Aug 17 22:02:05 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Mon, 01 Mar 2021 12: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