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
360a1349
Commit
360a1349
authored
May 20, 2008
by
Michael Olson
Browse files
files.el (project-find-settings-file): Change concat to expand-file-name.
parent
40a69fac
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lisp/files.el
lisp/files.el
+2
-2
No files found.
lisp/files.el
View file @
360a1349
...
@@ -3127,8 +3127,8 @@ Otherwise this returns nil."
...
@@ -3127,8 +3127,8 @@ Otherwise this returns nil."
((setq result (assoc dir project-directory-alist))
((setq result (assoc dir project-directory-alist))
;; Nothing else.
;; Nothing else.
nil)
nil)
((file-exists-p (
concat dir
".dir-settings.el"))
((file-exists-p (
expand-file-name
".dir-settings.el"
dir
))
(setq result (
concat dir
".dir-settings.el")))
(setq result (
expand-file-name
".dir-settings.el"
dir
)))
(t
(t
(setq dir (file-name-directory (directory-file-name dir))))))
(setq dir (file-name-directory (directory-file-name dir))))))
result))
result))
...
...
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