when not using `comint-use-prompt-regexp'.
+2005-09-28 Romain Francoise <romain@orebokech.com>
+
+ * comint.el (comint-show-output): Really set point at the
+ beginning of the output when not using `comint-use-prompt-regexp'.
+
2005-09-27 Jay Belanger <belanger@truman.edu>
* calc/calc-lang.el (math-oper-table): Raise the precedence of "/"
(set-window-start (selected-window) (point))
(comint-skip-prompt))
(t
- (goto-char (field-beginning pos))
+ (let* ((beg (field-beginning pos))
+ (pt (if (= (point-min) beg)
+ (point-min)
+ (1+ beg))))
+ (goto-char pt))
(set-window-start (selected-window) (point))))))