2006-12-09 Romain Francoise <romain@orebokech.com>
* comint.el (comint-insert-input): Delete obsolete comment.
- Examine input field without moving point.
2006-12-08 Kevin Rodgers <ihs_4664@yahoo.com>
(defun comint-insert-input (event)
"In a Comint buffer, set the current input to the previous input at point."
(interactive "e")
- ;; Note: be careful not to move point in this function, it would
- ;; defeat `mouse-yank-at-point' in case we fall back to a yank.
- (let ((pos (posn-point (event-end event))))
+ (mouse-set-point event)
+ (let ((pos (point)))
(if (not (eq (field-at-pos pos) 'input))
;; No input at POS, fall back to the global definition.
(let* ((keys (this-command-keys))