diff options
author | Martin Rudalics <rudalics@gmx.at> | 2018-12-11 08:56:15 +0100 |
---|---|---|
committer | Martin Rudalics <rudalics@gmx.at> | 2018-12-11 08:56:15 +0100 |
commit | 1e34d7579c21b96235ba1a06d97cfae0a5d3f2eb (patch) | |
tree | d5a6321fbff8a503a577b422e067e2358d3e958c /lisp/dired.el | |
parent | 7f95e1aec3014f32366129bcbf61675ab858f053 (diff) | |
download | emacs-1e34d7579c21b96235ba1a06d97cfae0a5d3f2eb.tar.gz emacs-1e34d7579c21b96235ba1a06d97cfae0a5d3f2eb.tar.bz2 emacs-1e34d7579c21b96235ba1a06d97cfae0a5d3f2eb.zip |
Fix typo in 'dired-restore-positions'
* lisp/dired.el (dired-restore-positions): Fix typo in last
change fixing Bug#33458.
Diffstat (limited to 'lisp/dired.el')
-rw-r--r-- | lisp/dired.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/dired.el b/lisp/dired.el index e5dc8623a49..72725dc8a09 100644 --- a/lisp/dired.el +++ b/lisp/dired.el @@ -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)))) |