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
b320926a
Commit
b320926a
authored
May 24, 1993
by
Richard M. Stallman
Browse files
(Fread_file_name): If input is empty, do return the default
even if !insert_default_directory.
parent
883047b9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
src/fileio.c
src/fileio.c
+2
-0
No files found.
src/fileio.c
View file @
b320926a
...
...
@@ -3232,6 +3232,8 @@ DIR defaults to current buffer's directory default.")
tem
=
Fstring_equal
(
val
,
insdef
);
if
(
!
NILP
(
tem
)
&&
!
NILP
(
defalt
))
return
defalt
;
if
(
XSTRING
(
val
)
->
size
==
0
&&
NILP
(
insdef
))
return
defalt
;
return
Fsubstitute_in_file_name
(
val
);
}
...
...
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