all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#7585: 23.2.90; [PATCH] fix eshell-previous-matching-input
@ 2010-12-07 18:51 Leo
  2010-12-13 17:00 ` Stefan Monnier
  0 siblings, 1 reply; 7+ messages in thread
From: Leo @ 2010-12-07 18:51 UTC (permalink / raw)
  To: 7585; +Cc: John Wiegley

There is a customisable variable eshell-hist-move-to-end when set to
nil, point is not guaranteed to be located behind
eshell-last-output-end. Thus blindly calling delete-region and
insert-and-inherit will generate an error in that case.


diff --git a/lisp/eshell/em-hist.el b/lisp/eshell/em-hist.el
index 45fe050..defaf5a 100644
--- a/lisp/eshell/em-hist.el
+++ b/lisp/eshell/em-hist.el
@@ -837,6 +837,8 @@ With prefix argument N, search for Nth previous match.
 If N is negative, find the next or Nth next match."
   (interactive (eshell-regexp-arg "Previous input matching (regexp): "))
   (setq arg (eshell-search-arg arg))
+  (assert (<= eshell-last-output-end (point))
+	  nil "Point not located after prompt")
   (let ((pos (eshell-previous-matching-input-string-position regexp arg)))
     ;; Has a match been found?
     (if (null pos)





^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-12-17 11:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-07 18:51 bug#7585: 23.2.90; [PATCH] fix eshell-previous-matching-input Leo
2010-12-13 17:00 ` Stefan Monnier
2010-12-13 18:31   ` Leo
2010-12-13 20:42     ` Stefan Monnier
2010-12-14  6:13       ` Leo
2010-12-14 19:46         ` Stefan Monnier
2010-12-17 11:04         ` Chong Yidong

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.