From debbugs-submit-bounces@debbugs.gnu.org Sun Sep 09 18:38:28 2012 Received: (at submit) by debbugs.gnu.org; 9 Sep 2012 22:38:28 +0000 Received: from localhost ([127.0.0.1]:50770 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TAq95-0000iM-Is for submit@debbugs.gnu.org; Sun, 09 Sep 2012 18:38:28 -0400 Received: from eggs.gnu.org ([208.118.235.92]:33686) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TAq7t-0000eV-W2 for submit@debbugs.gnu.org; Sun, 09 Sep 2012 18:37:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TAq7N-00076U-A8 for submit@debbugs.gnu.org; Sun, 09 Sep 2012 18:36:42 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, RCVD_IN_DNSWL_HI,T_DKIM_INVALID autolearn=unavailable version=3.3.2 Received: from lists.gnu.org ([208.118.235.17]:54871) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TAq7N-00076O-6r for submit@debbugs.gnu.org; Sun, 09 Sep 2012 18:36:41 -0400 Received: from eggs.gnu.org ([208.118.235.92]:52196) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TAq7L-00039u-UX for bug-gnu-emacs@gnu.org; Sun, 09 Sep 2012 18:36:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TAq7K-00075g-40 for bug-gnu-emacs@gnu.org; Sun, 09 Sep 2012 18:36:39 -0400 Received: from mail-iy0-f169.google.com ([209.85.210.169]:52770) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TAq7J-00075G-TH for bug-gnu-emacs@gnu.org; Sun, 09 Sep 2012 18:36:38 -0400 Received: by iagk10 with SMTP id k10so1378718iag.0 for ; Sun, 09 Sep 2012 15:36:36 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:from:date:x-google-sender-auth:message-id :subject:to:content-type; bh=aB+3nxEUpgQ1Z0wvPC82wvRCfyhXDR8fVkWB/IWmSYA=; b=CIiCHy5v80aoxbn3MGdXqFB6mn1VuEAHT1R8GxEsQ76yuoXKm0LI5g+xaNC3ocqCtQ 1natwX2N/iLT6kyIsfrVHy6O6BGyavP1T/RiyWbqSyFCVLkfzoxvi3UJjjbgNRnPJB25 xyDoZ8y0pDRnuC6HgV2l1Q88OOz0ysrHp5KSJPEfLf+kB4YMEbRKFUfQRr04/3YzK1DY ECneZtmkftEXpr5Wik9kHQttaXsry4cymzX0QrM2qs44/qdJAUjqdeTUzyBsldMWnmWD qT3Dxwhxw4577vGqMN0/3JHFHfiIVWJPd3/PGdI0ck8+0f0H2PoI/+8eAegk2HaJZSND D0/g== Received: by 10.50.187.202 with SMTP id fu10mr7849129igc.59.1347230196731; Sun, 09 Sep 2012 15:36:36 -0700 (PDT) MIME-Version: 1.0 Received: by 10.64.13.196 with HTTP; Sun, 9 Sep 2012 15:35:56 -0700 (PDT) From: Robert Park Date: Sun, 9 Sep 2012 17:35:56 -0500 X-Google-Sender-Auth: qqGlCIW66l_dycVaJPSFX652j98 Message-ID: Subject: 23.4; Disabling fringes causes term to garble certain text output. To: bug-gnu-emacs@gnu.org Content-Type: text/plain; charset=UTF-8 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 3) X-Received-From: 208.118.235.17 X-Spam-Score: -6.1 (------) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Sun, 09 Sep 2012 18:38:26 -0400 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.1 (------) Steps to reproduce: 1. Disable fringes using Custom, such that this appears in the custom-set-variables: '(fringe-mode 0 nil (fringe)) 2. Open a term buffer with `M-x term' (shell and ansi-term untested, sorry) 3. Run any program at all that will output a line that is longer than the width of your terminal window. Good examples would be: $ echo `seq 100` or $ cat some_file_with_long_lines.txt Expected results: The program runs and the output is displayed normally. Actual results: The program runs, but the output gets crammed all onto one line, overlapping itself in a lossy way, and afterwards the prompt is lost and any characters typed do not display. It is necessary to type C-l to restore normal operation of the terminal. Workaround: Keeping the fringe only on the right-hand side seems to not trigger this, eg, with this line in the .emacs: (set-fringe-mode (cons 0 1)) Potentially relevant details: Working in a *very* large frame, that has been split both horizontally and vertically multiple times, resulting in $COLUMNS=100 for the terminal. In GNU Emacs 23.4.1 (x86_64-pc-linux-gnu, GTK+ Version 2.24.10) of 2012-07-10 on komainu, modified by Debian Windowing system distributor `The X.Org Foundation', version 11.0.11300000 configured using `configure '--build' 'x86_64-linux-gnu' '--build' 'x86_64-linux-gnu' '--prefix=/usr' '--sharedstatedir=/var/lib' '--libexecdir=/usr/lib' '--localstatedir=/var/lib' '--infodir=/usr/share/info' '--mandir=/usr/share/man' '--with-pop=yes' '--enable-locallisppath=/etc/emacs23:/etc/emacs:/usr/local/share/emacs/23.4/site-lisp:/usr/local/share/emacs/site-lisp:/usr/share/emacs/23.4/site-lisp:/usr/share/emacs/site-lisp' '--with-crt-dir=/usr/lib/x86_64-linux-gnu' '--with-x=yes' '--with-x-toolkit=gtk' '--with-toolkit-scroll-bars' 'build_alias=x86_64-linux-gnu' 'CFLAGS=-g -O2 -fstack-protector --param=ssp-buffer-size=4 -Wformat -Werror=format-security -Wall -DDEBIAN -O2' 'CPPFLAGS=-D_FORTIFY_SOURCE=2'' Important settings: value of $LC_ALL: nil value of $LC_COLLATE: nil value of $LC_CTYPE: nil value of $LC_MESSAGES: nil value of $LC_MONETARY: nil value of $LC_NUMERIC: nil value of $LC_TIME: nil value of $LANG: en_CA.UTF-8 value of $XMODIFIERS: nil locale-coding-system: utf-8-unix default enable-multibyte-characters: t Major mode: terminal Minor modes in effect: shell-dirtrack-mode: t show-paren-mode: t global-whitespace-mode: t global-linum-mode: t linum-mode: t global-hl-line-mode: t tabbar-mwheel-mode: t tabbar-mode: t global-auto-revert-mode: t desktop-save-mode: t cua-mode: t tooltip-mode: t mouse-wheel-mode: t file-name-shadow-mode: t global-font-lock-mode: t font-lock-mode: t blink-cursor-mode: t auto-encryption-mode: t auto-compression-mode: t size-indication-mode: t transient-mark-mode: t Load-path shadows: /usr/share/emacs/23.4/site-lisp/debian-startup hides /usr/share/emacs/site-lisp/debian-startup /usr/share/emacs/23.4/site-lisp/cmake-data/cmake-mode hides /usr/share/emacs/site-lisp/cmake-mode /usr/share/emacs23/site-lisp/dictionaries-common/ispell hides /usr/share/emacs/23.4/lisp/textmodes/ispell /usr/share/emacs23/site-lisp/dictionaries-common/flyspell hides /usr/share/emacs/23.4/lisp/textmodes/flyspell Features: (shadow sort mail-extr message sendmail ecomplete rfc822 mml mml-sec password-cache mm-decode mm-bodies mm-encode mailcap mail-parse rfc2231 rfc2047 rfc2045 qp ietf-drums mailabbrev nnheader gnus-util netrc time-date mm-util mail-prsvr gmm-utils mailheader canlock sha1 hex-util hashcash mail-utils emacsbug help-mode view noutline outline python-mode imenu flymake rx shell cc-cmds cc-engine cc-vars cc-defs regexp-opt vc-git uniquify paren cus-start cus-load server ace-jump-mode winner sr-speedbar speedbar sb-image ezimage dframe assoc setup-private setup-whitespace disp-table whitespace robru-style linum hl-line tabbar info color-theme easymenu wid-edit cl cl-19 term-love dirtrack ansi-color shell-pop backups autorevert bigscreen modern advice help-fns advice-preload desktop edmacro kmacro cua-base compile comint ring emacs-goodies-el emacs-goodies-custom emacs-goodies-loaddefs easy-mmode devhelp tooltip ediff-hook vc-hooks lisp-float-type mwheel x-win x-dnd font-setting tool-bar dnd fontset image fringe lisp-mode register page menu-bar rfn-eshadow timer select scroll-bar mldrag mouse jit-lock font-lock syntax facemenu font-core frame cham georgian utf-8-lang misc-lang vietnamese tibetan thai tai-viet lao korean japanese hebrew greek romanian slovak czech european ethiopic indian cyrillic chinese case-table epa-hook jka-cmpr-hook help simple abbrev loaddefs button minibuffer faces cus-face files text-properties overlay md5 base64 format env code-pages mule custom widget hashtable-print-readable backquote make-network-process dbusbind system-font-setting font-render-setting gtk x-toolkit x multi-tty emacs) -- http://gottengeography.ca From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 13 05:01:33 2012 Received: (at 12398) by debbugs.gnu.org; 13 Oct 2012 09:01:33 +0000 Received: from localhost ([127.0.0.1]:41982 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TMxb7-00010d-Em for submit@debbugs.gnu.org; Sat, 13 Oct 2012 05:01:31 -0400 Received: from mail-pa0-f44.google.com ([209.85.220.44]:46782) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TMxb4-00010O-4Z for 12398@debbugs.gnu.org; Sat, 13 Oct 2012 05:01:27 -0400 Received: by mail-pa0-f44.google.com with SMTP id fb11so3485681pad.3 for <12398@debbugs.gnu.org>; Sat, 13 Oct 2012 02:00:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=/BT9XZmexBhJG3Lwy6ABdbs5fWUGEowFw5zLBN5CRUc=; b=rp9GXUui2xws1jb3dxC4WZTW+Bvsp6bkcOli7pSZtIBZCYKunPZx6sI18UMbraJAIO ze04y+Z9TaQUfQL06nvQY6Jp2Sf/4pLD8S1WUSbz3e++lQ5YxzpWkdq/3H5cZaetep3r 2mQhBB5SB9SM7EPj6MFTlxy2C570pTPI8xAyHJt4amnBuin+/PVvzsmrPZQ1MxwI7WOj 1xJkxm42oiKCkE5GfTPIpTgw70xMzMn50lW/ioFtCHmyZWi4evM4eTJ7igHDJo2/HXTi XHdQOeGFed++b9vmbKH67b1QlY0uIt16wOyMQHDSDnk3qDcgsIx6VztBONezyuU1638g kNgQ== Received: by 10.66.85.8 with SMTP id d8mr17836214paz.30.1350118825570; Sat, 13 Oct 2012 02:00:25 -0700 (PDT) Received: from ulysses (cm162.gamma80.maxonline.com.sg. [202.156.80.162]) by mx.google.com with ESMTPS id s10sm2387461pax.22.2012.10.13.02.00.21 (version=SSLv3 cipher=OTHER); Sat, 13 Oct 2012 02:00:24 -0700 (PDT) From: Chong Yidong To: Robert Park Subject: Re: bug#12398: 23.4; Disabling fringes causes term to garble certain text output. References: Date: Sat, 13 Oct 2012 17:00:18 +0800 In-Reply-To: (Robert Park's message of "Sun, 9 Sep 2012 17:35:56 -0500") Message-ID: <87a9vqrbkt.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 12398 Cc: 12398@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: 0.1 (/) Robert Park writes: > 1. Disable fringes using Custom, such that this appears in the > custom-set-variables: > > '(fringe-mode 0 nil (fringe)) > > 2. Open a term buffer with `M-x term' (shell and ansi-term untested, sorry) > > 3. Run any program at all that will output a line that is longer > than the width of your terminal window. > > $ echo `seq 100` > > The program runs, but the output gets crammed all onto one line Thanks for the bug report. This bug has been fixed in Emacs 24. From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 13 05:01:36 2012 Received: (at control) by debbugs.gnu.org; 13 Oct 2012 09:01:36 +0000 Received: from localhost ([127.0.0.1]:41985 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TMxbD-00010t-7y for submit@debbugs.gnu.org; Sat, 13 Oct 2012 05:01:36 -0400 Received: from mail-pa0-f44.google.com ([209.85.220.44]:46782) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TMxb8-00010O-0f for control@debbugs.gnu.org; Sat, 13 Oct 2012 05:01:33 -0400 Received: by mail-pa0-f44.google.com with SMTP id fb11so3485681pad.3 for ; Sat, 13 Oct 2012 02:00:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:subject:date:message-id:mime-version:content-type; bh=xMhMWEgbbE+4vY1ESI8H0P1MLcnyuwCPPN5fSfstz0s=; b=vO7ngtL3XZTG+/h2+MX/F7DIF19qZCUTEgn1j1letWPLPKNx7st+nMKBG0p2Q7YWa6 RON6v97Ih1/Nq+tJOmr7LS3bk5odQ2pdvztGV3LkZxR5ZaPmUPNNKNFb2kX9pd1djjIT iSh7VsgQrahVmvmsHCUP3l6dxVjV6ryuevw57BZ8KlhOfBs/rLeEHfw9bNndo9eSLAUF a7y7CyxsJ/DM2QYL1xMk6fxros1b0j/RG0bvrE5iI1M2cSSOwWwGKmtk3YzKnIpoa0b1 dEdw8nkLYJHOdTXhtX8agNY0pOu2Rhr1cN7kGlJPCfWnsCIbDaMes7jSbiy2UzZfiUBQ X1ZA== Received: by 10.68.224.69 with SMTP id ra5mr20508774pbc.114.1350118834962; Sat, 13 Oct 2012 02:00:34 -0700 (PDT) Received: from ulysses (cm162.gamma80.maxonline.com.sg. [202.156.80.162]) by mx.google.com with ESMTPS id uq5sm5768461pbc.56.2012.10.13.02.00.32 (version=SSLv3 cipher=OTHER); Sat, 13 Oct 2012 02:00:34 -0700 (PDT) From: Chong Yidong To: control@debbugs.gnu.org Subject: close 12398 Date: Sat, 13 Oct 2012 17:00:30 +0800 Message-ID: <87a9vq4uhd.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: 0.1 (/) close 12398 thanks From debbugs-submit-bounces@debbugs.gnu.org Sat Oct 13 14:17:33 2012 Received: (at 12398) by debbugs.gnu.org; 13 Oct 2012 18:17:33 +0000 Received: from localhost ([127.0.0.1]:42790 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TN6HD-00013T-RG for submit@debbugs.gnu.org; Sat, 13 Oct 2012 14:17:33 -0400 Received: from mail-ie0-f172.google.com ([209.85.223.172]:54360) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TN6H9-00013E-UU for 12398@debbugs.gnu.org; Sat, 13 Oct 2012 14:17:30 -0400 Received: by mail-ie0-f172.google.com with SMTP id 9so6485070iec.3 for <12398@debbugs.gnu.org>; Sat, 13 Oct 2012 11:16:25 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:sender:in-reply-to:references:from:date :x-google-sender-auth:message-id:subject:to:cc:content-type; bh=GkV/P4aSzKzLM5UA0Qn3JzHvrYO+fhromqeuOebUmeQ=; b=ZKCo6Q2XCHhgLBC2TxdWUdCQaU5pD+L0KZ1b/cZLZcalDkBRKy+NVmRhkyqmbJia+B ea84izKlPqGneCwu0x1xC3ncXA+MI5qAQaBeCq1N+U5YHJFxwpdSTrtxXw0VAGEjQjvQ 7Xd3ZUNxb1n++k1/NS09nDK5avuEL5OFJCdcKpySiOeP2yNwWjkdMKgC1jX1Crf/Sup5 JPm5obV19baOhqkWWOdZE2G0L91753SwJh5ur9/264cUNxgHJ8ESrObb8shQP3iyrZrS 4nSr69t58SVg1gg4CF4b7jVTkZhDgFDdJS0N7o6rc/IpOhziEWzDl4XzrEnLTzeCvqrq oaQA== Received: by 10.50.216.167 with SMTP id or7mr5048762igc.73.1350152185155; Sat, 13 Oct 2012 11:16:25 -0700 (PDT) MIME-Version: 1.0 Received: by 10.64.96.71 with HTTP; Sat, 13 Oct 2012 11:15:44 -0700 (PDT) In-Reply-To: <87a9vqrbkt.fsf@gnu.org> References: <87a9vqrbkt.fsf@gnu.org> From: Robert Park Date: Sat, 13 Oct 2012 13:15:44 -0500 X-Google-Sender-Auth: 1SUF6_0V5aOnj1b1HylgwmeCA54 Message-ID: Subject: Re: bug#12398: 23.4; Disabling fringes causes term to garble certain text output. To: Chong Yidong Content-Type: text/plain; charset=UTF-8 X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 12398 Cc: 12398@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: 0.1 (/) On Sat, Oct 13, 2012 at 4:00 AM, Chong Yidong wrote: > Thanks for the bug report. This bug has been fixed in Emacs 24. Was it only *just* fixed? Because I can still reproduce it in Emacs 24.1.1. 1. eval this elisp: (set-fringe-mode (cons 0 0)) 2. Run any command that outputs long lines in term-mode: $ echo `seq 100` Expected output: robru ~ $ echo `seq 100` 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 Actual output: $ bru ~4 95 96 97 98 99 100 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 Note that I have a two-line $PS1 set, and the output appears to be the second line of my prompt ('$ ') laid over the first line of my prompt ('robru ~') laid over the third line of the output (the numbers). Further, once this condition is triggered, *all* further output regardless of line length just overwrites this same one line, until C-l is typed, then everything goes back to normal (at least until another long line is printed). The workaround is to enable the fringe on just one side: (set-fringe-mode (cons 0 1)) And then everything works fine. -- http://gottengeography.ca From debbugs-submit-bounces@debbugs.gnu.org Thu Oct 18 13:15:48 2012 Received: (at 12398) by debbugs.gnu.org; 18 Oct 2012 17:15:49 +0000 Received: from localhost ([127.0.0.1]:50192 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TOthE-00055B-Gy for submit@debbugs.gnu.org; Thu, 18 Oct 2012 13:15:48 -0400 Received: from mail-vc0-f172.google.com ([209.85.220.172]:61831) by debbugs.gnu.org with esmtp (Exim 4.72) (envelope-from ) id 1TOthC-00054y-Pp for 12398@debbugs.gnu.org; Thu, 18 Oct 2012 13:15:47 -0400 Received: by mail-vc0-f172.google.com with SMTP id fl11so11737317vcb.3 for <12398@debbugs.gnu.org>; Thu, 18 Oct 2012 10:14:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; bh=6Jyjj+njPPmVP0sf4V7opPNkv7Pj2vqEX+yxAIDbbTA=; b=hXso7M2r56nFy1W352J2gUgooFq9Axk7vJAiNx18jTwR77VdQwWQr53SPFJOi/kRXt gTHu+IKI8FurjINrlhL/zai6NaWx2299OPpHFGcuOcGaUKN5ot19Bx72G9zwLyhCFFAe pF59Y/xZVpWBGaasY6Ubegt8vW5QcF2V6LzB51YgNit2uihf8Qxjg6dDB7fTf+3jlOQi kYze+6c4zD7Ph5mbNZ48kCvWfW9h/iwU+iIAQPcLD/QYbD3k6nhVEmv/4+m3Q/l0/j4U hixCgOo8xfpn74eLgqaKS30HqDofbbhmkrS8Ti+FIDXrlsY4IuNhlH+jOTqM7UqHtlL1 tIDg== Received: by 10.220.150.10 with SMTP id w10mr6551424vcv.16.1350580455602; Thu, 18 Oct 2012 10:14:15 -0700 (PDT) Received: from ulysses ([50.122.143.225]) by mx.google.com with ESMTPS id y7sm2969893vdt.1.2012.10.18.10.14.14 (version=SSLv3 cipher=OTHER); Thu, 18 Oct 2012 10:14:14 -0700 (PDT) From: Chong Yidong To: Robert Park Subject: Re: bug#12398: 23.4; Disabling fringes causes term to garble certain text output. References: <87a9vqrbkt.fsf@gnu.org> Date: Fri, 19 Oct 2012 01:14:13 +0800 In-Reply-To: (Robert Park's message of "Sat, 13 Oct 2012 13:15:44 -0500") Message-ID: <87objzpusa.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: 12398 Cc: 12398@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: 0.1 (/) Robert Park writes: >> Thanks for the bug report. This bug has been fixed in Emacs 24. > > Was it only *just* fixed? Because I can still reproduce it in Emacs > 24.1.1. It is fixed in trunk, so the fix will be in 24.3. From unknown Sat Sep 06 02:32:44 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 16 Nov 2012 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