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
e9214600
Commit
e9214600
authored
Jul 03, 1998
by
Kenichi Handa
Browse files
(Finsert_file_contents): Do not set Vlast_coding_system
if inserted bytes is zero.
parent
65f64d00
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/fileio.c
src/fileio.c
+1
-1
No files found.
src/fileio.c
View file @
e9214600
...
...
@@ -4117,7 +4117,7 @@ actually used.")
&&
(
NILP
(
visit
)
||
!
NILP
(
replace
)))
signal_after_change
(
PT
,
0
,
inserted
);
if
(
set_coding_system
)
if
(
set_coding_system
&&
inserted
>
0
)
Vlast_coding_system_used
=
coding
.
symbol
;
if
(
inserted
>
0
)
...
...
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