Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
c439687b
Commit
c439687b
authored
Oct 31, 1996
by
Richard M. Stallman
Browse files
(dired-find-file): Error if line's file does not exist.
parent
9663837a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
lisp/dired.el
lisp/dired.el
+4
-1
No files found.
lisp/dired.el
View file @
c439687b
...
...
@@ -1173,7 +1173,10 @@ Creates a buffer if necessary."
(
defun
dired-find-file
()
"In dired, visit the file or directory named on this line."
(
interactive
)
(
find-file
(
file-name-sans-versions
(
dired-get-filename
)
t
)))
(
let
((
file-name
(
file-name-sans-versions
(
dired-get-filename
)
t
)))
(
if
(
file-exists-p
file-name
)
(
find-file
file-name
)
(
error
"File no longer exists; type `g' to update Dired buffer"
))))
(
defun
dired-mouse-find-file-other-window
(
event
)
"In dired, visit the file or directory name you click on."
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment