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
36712b0a
Commit
36712b0a
authored
Mar 16, 1994
by
Karl Heuer
Browse files
(Frename_file, Fcopy_file, Fadd_name_to_file, Fmake_symbolic_link): Fix typo
in previous change.
parent
7fe78b07
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
src/fileio.c
src/fileio.c
+8
-8
No files found.
src/fileio.c
View file @
36712b0a
...
...
@@ -1715,8 +1715,8 @@ A prefix arg makes KEEP-TIME non-nil.")
if
(
NILP
(
handler
))
handler
=
Ffind_file_name_handler
(
newname
);
if
(
!
NILP
(
handler
))
return
RETURN_UNGCPRO
(
call5
(
handler
,
Qcopy_file
,
filename
,
newname
,
ok_if_already_exists
,
keep_date
));
RETURN_UNGCPRO
(
call5
(
handler
,
Qcopy_file
,
filename
,
newname
,
ok_if_already_exists
,
keep_date
));
if
(
NILP
(
ok_if_already_exists
)
||
XTYPE
(
ok_if_already_exists
)
==
Lisp_Int
)
...
...
@@ -1890,8 +1890,8 @@ This is what happens in interactive use with M-x.")
if
(
NILP
(
handler
))
handler
=
Ffind_file_name_handler
(
newname
);
if
(
!
NILP
(
handler
))
return
RETURN_UNGCPRO
(
call4
(
handler
,
Qrename_file
,
filename
,
newname
,
ok_if_already_exists
));
RETURN_UNGCPRO
(
call4
(
handler
,
Qrename_file
,
filename
,
newname
,
ok_if_already_exists
));
if
(
NILP
(
ok_if_already_exists
)
||
XTYPE
(
ok_if_already_exists
)
==
Lisp_Int
)
...
...
@@ -1953,8 +1953,8 @@ This is what happens in interactive use with M-x.")
call the corresponding file handler. */
handler
=
Ffind_file_name_handler
(
filename
);
if
(
!
NILP
(
handler
))
return
RETURN_UNGCPRO
(
call4
(
handler
,
Qadd_name_to_file
,
filename
,
newname
,
ok_if_already_exists
));
RETURN_UNGCPRO
(
call4
(
handler
,
Qadd_name_to_file
,
filename
,
newname
,
ok_if_already_exists
));
if
(
NILP
(
ok_if_already_exists
)
||
XTYPE
(
ok_if_already_exists
)
==
Lisp_Int
)
...
...
@@ -2007,8 +2007,8 @@ This happens for interactive use with M-x.")
call the corresponding file handler. */
handler
=
Ffind_file_name_handler
(
filename
);
if
(
!
NILP
(
handler
))
return
RETURN_UNGCPRO
(
call4
(
handler
,
Qmake_symbolic_link
,
filename
,
linkname
,
ok_if_already_exists
));
RETURN_UNGCPRO
(
call4
(
handler
,
Qmake_symbolic_link
,
filename
,
linkname
,
ok_if_already_exists
));
if
(
NILP
(
ok_if_already_exists
)
||
XTYPE
(
ok_if_already_exists
)
==
Lisp_Int
)
...
...
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