Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
154a307d
Commit
154a307d
authored
Apr 15, 1998
by
Karl Heuer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(file_name_as_directory): For empty arg, return `./'.
parent
170c9733
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
src/fileio.c
src/fileio.c
+3
-2
No files found.
src/fileio.c
View file @
154a307d
...
...
@@ -484,8 +484,9 @@ file_name_as_directory (out, in)
if
(
size
<
0
)
{
out
[
0
]
=
'/'
;
out
[
1
]
=
0
;
out
[
0
]
=
'.'
;
out
[
1
]
=
'/'
;
out
[
2
]
=
0
;
return
out
;
}
...
...
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