]> git.eshelyaron.com Git - emacs.git/commitdiff
comint-read-input-ring: Simplify last commit
authorBrian Leung <leungbk@mailfence.com>
Tue, 12 Jan 2021 12:29:03 +0000 (13:29 +0100)
committerLars Ingebrigtsen <larsi@gnus.org>
Tue, 12 Jan 2021 12:29:03 +0000 (13:29 +0100)
* 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).

lisp/comint.el

index 3476fd146cbff967eabcc49e462b9264c560be82..53153af7d27ef8fe82623f0239c5c8b319c23652 100644 (file)
@@ -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)