summaryrefslogtreecommitdiff
path: root/lisp/comint.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/comint.el')
-rw-r--r--lisp/comint.el3
1 files changed, 1 insertions, 2 deletions
diff --git a/lisp/comint.el b/lisp/comint.el
index 940643b24cc..c7e5b3bdddd 100644
--- a/lisp/comint.el
+++ b/lisp/comint.el
@@ -817,9 +817,7 @@ buffer. The hook `comint-exec-hook' is run after each exec."
(let* ((keys (this-command-keys))
(last-key (and (vectorp keys) (aref keys (1- (length keys)))))
(fun (and last-key (lookup-key global-map (vector last-key)))))
- (goto-char pos)
(and fun (call-interactively fun)))
- (setq pos (point))
;; There's previous input at POS, insert it at the end of the buffer.
(goto-char (point-max))
;; First delete any old unsent input at the end
@@ -829,6 +827,7 @@ buffer. The hook `comint-exec-hook' is run after each exec."
(point))
;; Insert the input at point
(insert (field-string-no-properties pos))))))
+
;; Input history processing in a buffer
;; ===========================================================================