bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#1699: marked as done (patch for bug#1469 (term.el regression when d


From: Emacs bug Tracking System
Subject: bug#1699: marked as done (patch for bug#1469 (term.el regression when dealing with long lines under bash))
Date: Fri, 26 Dec 2008 21:50:03 +0000

Your message dated Fri, 26 Dec 2008 22:45:07 +0100
with message-id <f7ccd24b0812261345n12c24368x650a77964c1d475f@mail.gmail.com>
and subject line Re: bug#1699: this is not a bug, please close
has caused the Emacs bug report #1699,
regarding patch for bug#1469 (term.el regression when dealing with long lines 
under bash)
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@emacsbugs.donarmstrong.com
immediately.)


-- 
1699: http://emacsbugs.donarmstrong.com/cgi-bin/bugreport.cgi?bug=1699
Emacs Bug Tracking System
Contact owner@emacsbugs.donarmstrong.com with problems
--- Begin Message --- Subject: patch for bug#1469 (term.el regression when dealing with long lines under bash) Date: Wed, 24 Dec 2008 20:19:00 -0800 User-agent: Thunderbird 2.0.0.18 (X11/20081125) Hello, attached is a patch for bug#1469 (term.el regression when dealing with long lines under bash).

* term.el (term-emulate-terminal): Decode substring just prior to inserting it. (Bug#1469)

bug#1469 was introduced while fixing bug#1006. I verified this patch against the repro steps in bug#1006 to make sure I haven't made a regression.

Can someone please review?  I'd appreciate any feedback.

-- Nicholas
Index: lisp/term.el
===================================================================
RCS file: /sources/emacs/emacs/lisp/term.el,v
retrieving revision 1.107
diff -c -p -r1.107 term.el
*** lisp/term.el        3 Dec 2008 05:48:33 -0000       1.107
--- lisp/term.el        25 Dec 2008 03:45:24 -0000
*************** See `term-prompt-regexp'."
*** 2834,2840 ****
                          ;; following point if not eob nor insert-mode.
                          (let ((old-column (current-column))
                                columns pos)
!                           (insert decoded-substring)
                            (setq term-current-column (current-column)
                                  columns (- term-current-column old-column))
                            (when (not (or (eobp) term-insert-mode))
--- 2834,2840 ----
                          ;; following point if not eob nor insert-mode.
                          (let ((old-column (current-column))
                                columns pos)
!                               (insert (decode-coding-string (substring str i 
funny) locale-coding-system))
                            (setq term-current-column (current-column)
                                  columns (- term-current-column old-column))
                            (when (not (or (eobp) term-insert-mode))

--- End Message ---
--- Begin Message --- Subject: Re: bug#1699: this is not a bug, please close Date: Fri, 26 Dec 2008 22:45:07 +0100
On Fri, Dec 26, 2008 at 22:18, Nicholas Maniscalco
<nicholas@maniscalco.com> wrote:

> #1699 can be closed.  I misposted to the wrong list.

Done.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]