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
c52e4104
Commit
c52e4104
authored
Jul 22, 1993
by
Richard M. Stallman
Browse files
(parse-colon-path): Really make nil, not ".", for empty path element.
parent
0a933d4b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
lisp/files.el
lisp/files.el
+3
-3
No files found.
lisp/files.el
View file @
c52e4104
...
...
@@ -257,9 +257,9 @@ Not actually set up until the first time you you use it.")
(
while
(
setq
cd-colon
(
string-match
":"
cd-path
cd-start
))
(
setq
cd-list
(
nconc
cd-list
(
list
(
substitute-in-file-name
(
if
(
=
cd-start
cd-colon
)
"."
(
list
(
if
(
=
cd-start
cd-colon
)
nil
(
substitute-in-file-name
(
file-name-as-directory
(
substring
cd-path
cd-start
cd-colon
)))))))
(
setq
cd-start
(
+
cd-colon
1
)))
...
...
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