Fix typo in 'dired-restore-positions'

* lisp/dired.el (dired-restore-positions): Fix typo in last
change fixing Bug#33458.
This commit is contained in:
Martin Rudalics 2018-12-11 08:56:15 +01:00
parent 7f95e1aec3
commit 1e34d7579c

View file

@ -1530,7 +1530,7 @@ change; the point does."
;; Sanity check of the point marker.
(when (and (markerp point)
(eq (marker-buffer point) buffer))
(unless (and (nth 0 prev)
(unless (and (nth 1 prev)
(dired-goto-file (nth 1 prev)))
(goto-char (point-min))
(forward-line (1- (nth 2 prev))))