From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.io!.POSTED.blaine.gmane.org!not-for-mail From: Phil Sainty Newsgroups: gmane.emacs.bugs Subject: bug#70236: Truncating only happening on 900 character long lines in *compilation* buffer Date: Sun, 07 Apr 2024 13:31:28 +1200 Message-ID: References: <87msq64zvd.5.fsf@jidanni.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Injection-Info: ciao.gmane.io; posting-host="blaine.gmane.org:116.202.254.214"; logging-data="17188"; mail-complaints-to="usenet@ciao.gmane.io" User-Agent: Orcon Webmail To: 70236@debbugs.gnu.org Original-X-From: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Sun Apr 07 03:32:12 2024 Return-path: Envelope-to: geb-bug-gnu-emacs@m.gmane-mx.org Original-Received: from lists.gnu.org ([209.51.188.17]) by ciao.gmane.io with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1rtHOG-0004HD-9H for geb-bug-gnu-emacs@m.gmane-mx.org; Sun, 07 Apr 2024 03:32:12 +0200 Original-Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1rtHO0-00059L-Gb; Sat, 06 Apr 2024 21:31:56 -0400 Original-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 1rtHNz-00059A-Mh for bug-gnu-emacs@gnu.org; Sat, 06 Apr 2024 21:31:55 -0400 Original-Received: from debbugs.gnu.org ([2001:470:142:5::43]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1rtHNz-00044v-El for bug-gnu-emacs@gnu.org; Sat, 06 Apr 2024 21:31:55 -0400 Original-Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1rtHO5-0004dT-T6 for bug-gnu-emacs@gnu.org; Sat, 06 Apr 2024 21:32:01 -0400 X-Loop: help-debbugs@gnu.org In-Reply-To: <87msq64zvd.5.fsf@jidanni.org> Resent-From: Phil Sainty Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Sun, 07 Apr 2024 01:32:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 70236 X-GNU-PR-Package: emacs Original-Received: via spool by 70236-submit@debbugs.gnu.org id=B70236.171245350117677 (code B ref 70236); Sun, 07 Apr 2024 01:32:01 +0000 Original-Received: (at 70236) by debbugs.gnu.org; 7 Apr 2024 01:31:41 +0000 Original-Received: from localhost ([127.0.0.1]:41322 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rtHNl-0004b3-Gp for submit@debbugs.gnu.org; Sat, 06 Apr 2024 21:31:41 -0400 Original-Received: from smtp-3.orcon.net.nz ([60.234.4.44]:48933) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1rtHNh-0004aE-Le for 70236@debbugs.gnu.org; Sat, 06 Apr 2024 21:31:39 -0400 Original-Received: from [10.253.37.70] (port=43704 helo=webmail.orcon.net.nz) by smtp-3.orcon.net.nz with esmtpa (Exim 4.90_1) (envelope-from ) id 1rtHNY-0005mi-Od for 70236@debbugs.gnu.org; Sun, 07 Apr 2024 13:31:29 +1200 Original-Received: from ip-139-180-86-108.kinect.net.nz ([139.180.86.108]) via [10.253.37.253] by webmail.orcon.net.nz with HTTP (HTTP/1.1 POST); Sun, 07 Apr 2024 13:31:28 +1200 X-Sender: psainty@orcon.net.nz X-GeoIP: -- X-Spam_score: -2.9 X-Spam_score_int: -28 X-Spam_bar: -- X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list X-BeenThere: bug-gnu-emacs@gnu.org List-Id: "Bug reports for GNU Emacs, the Swiss army knife of text editors" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Original-Sender: bug-gnu-emacs-bounces+geb-bug-gnu-emacs=m.gmane-mx.org@gnu.org Xref: news.gmane.io gmane.emacs.bugs:282832 Archived-At: This will generate the same output as that perl: (cl-loop for n from 100 to 1500 by 100 do (insert (number-to-string n) " [\"" (make-string n (string-to-char (format "%X" (/ n 100)))) "\"]\n\n")) If you write that to a file "test" in some temp dir and have a Makefile like this: foo: cat test Then the suggested command will demonstrate the issue: emacs -Q -f compile What you're looking at is the difference between the "900" line (which gets truncated) and all the other lines (which do not). compilation-max-output-line-length is 400