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
a02bf0c3
Commit
a02bf0c3
authored
Feb 19, 2008
by
Stefan Monnier
Browse files
(locate-dominating-file): Fix thinko in last change.
Reported by Bruce Stephens <bruce.stephens@isode.com>.
parent
24b2be09
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
lisp/ChangeLog
lisp/ChangeLog
+5
-0
lisp/files.el
lisp/files.el
+1
-1
No files found.
lisp/ChangeLog
View file @
a02bf0c3
2008-02-19 Stefan Monnier <monnier@iro.umontreal.ca>
* files.el (locate-dominating-file): Fix thinko in last change.
Reported by Bruce Stephens <bruce.stephens@isode.com>.
2008-02-18 Dan Nicolaescu <dann@ics.uci.edu>
* vc.el (vc-status-mode-menu): New menu for vc-status.
...
...
lisp/files.el
View file @
a02bf0c3
...
...
@@ -742,7 +742,7 @@ PATH-AND-SUFFIXES is a pair of lists, (DIRECTORIES . SUFFIXES)."
;; files inside a project belong to the same user.
(
let
((
prev-user
user
))
(
setq
user
(
nth
2
(
file-attributes
file
)))
(
not
(
or
(
null
prev-user
)
(
equal
user
prev-user
))))
)
(
or
(
null
prev-user
)
(
equal
user
prev-user
))))
(
if
(
setq
files
(
directory-files
dir
'full
regexp
))
(
throw
'found
(
car
files
))
(
if
(
equal
dir
...
...
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