From e38ee395e84bf519f98554da69063fb9e1327243 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Sat, 11 May 1996 17:11:06 +0000 Subject: (term-emulate-terminal): On CR, set term-current-column to term-start-line-column, not 0. --- lisp/term.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/term.el b/lisp/term.el index 4ea880de1ee..4209e8129f2 100644 --- a/lisp/term.el +++ b/lisp/term.el @@ -2189,7 +2189,7 @@ See `term-prompt-regexp'." (setq i temp)) (t ;; Not followed by LF or can't optimize: (term-vertical-motion 0) - (setq term-current-column 0)))) + (setq term-current-column term-start-line-column)))) ((eq char ?\n) (if (not (and term-kill-echo-list (term-check-kill-echo-list))) -- cgit v1.2.1