* emacs-lisp/autoload.el (batch-update-autoloads):
Call `update-directory-autoloads'.
+2003-05-04 Dan Nicolaescu <dann@ics.uci.edu>
+
+ * dired.el (dired-find-file): Bind find-file-run-dired around
+ the call to find-file.
+
2003-05-04 Stefan Monnier <monnier@cs.yale.edu>
* uniquify.el: Move provide to end of file.
(defun dired-find-file ()
"In Dired, visit the file or directory named on this line."
(interactive)
- (find-file (dired-get-file-for-visit)))
+ ;; Bind `find-file-run-dired' so that the command works on directories
+ ;; too, independent of the user's setting.
+ (let ((find-file-run-dired t))
+ (find-file (dired-get-file-for-visit))))
(defun dired-find-alternate-file ()
"In Dired, visit this file or directory instead of the dired buffer."