+2002-09-15 Markus Rost <rost@math.ohio-state.edu>
+
+ * dired.el (dired-move-to-filename): Fix previous change.
+
2002-09-14 Kim F. Storm <storm@cua.dk>
* emulation/keypad.el (keypad-setup, keypad-shifted-setup)
;; First try assuming `ls --dired' was used.
(let ((change (next-single-property-change (point) 'dired-filename
nil eol)))
- (if change (goto-char change)
+ (if (and change (< change eol))
+ (goto-char change)
(if (re-search-forward dired-move-to-filename-regexp eol t)
(goto-char (match-end 0))
(if raise-error