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
1f3b4d04
Commit
1f3b4d04
authored
Sep 25, 2004
by
Stefan Monnier
Browse files
(dired-move-to-filename): Don't output a message if
raise-error is non-nil. Fix return position and value.
parent
52e281e8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
lisp/ChangeLog
lisp/ChangeLog
+3
-0
lisp/dired.el
lisp/dired.el
+4
-2
No files found.
lisp/ChangeLog
View file @
1f3b4d04
2004-09-25 Stefan <monnier@iro.umontreal.ca>
* dired.el (dired-move-to-filename): Don't output a message if
raise-error is non-nil. Fix return position and value.
* files.el (insert-directory): Obey --dired even with symlinks.
2004-09-25 Lars Hansen <larsh@math.ku.dk>
...
...
lisp/dired.el
View file @
1f3b4d04
...
...
@@ -1774,8 +1774,10 @@ regardless of the language.")
(
goto-char
(
match-end
0
)))
((
re-search-forward
dired-permission-flags-regexp
eol
t
)
;; Ha! There *is* a file. Our regexp-from-hell just failed to find it.
(
funcall
(
if
raise-error
'error
'message
)
"Unrecognized line! Check dired-move-to-filename-regexp"
))
(
if
raise-error
(
error
"Unrecognized line! Check dired-move-to-filename-regexp"
))
(
beginning-of-line
)
nil
)
(
raise-error
(
error
"No file on this line"
)))))
...
...
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