From: Brian Leung Date: Tue, 12 Jan 2021 12:29:03 +0000 (+0100) Subject: comint-read-input-ring: Simplify last commit X-Git-Tag: emacs-28.0.90~4291 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=78ef0a72fa57c05c4be1401b2304c106a02c257d;p=emacs.git comint-read-input-ring: Simplify last commit * lisp/comint.el (comint-read-input-ring): It is not necessary to use `goto-char' again since we have already moved point to the desired location (bug#45797). --- diff --git a/lisp/comint.el b/lisp/comint.el index 3476fd146cb..53153af7d27 100644 --- a/lisp/comint.el +++ b/lisp/comint.el @@ -1000,7 +1000,6 @@ See also `comint-input-ignoredups' and `comint-write-input-ring'." (goto-char (match-end 0))) (setq start (point)) (setq history (buffer-substring start end)) - (goto-char start) (when (and (not (string-match history-ignore history)) (or (null ignoredups) (ring-empty-p ring)