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
57515cfe
Commit
57515cfe
authored
Jun 26, 1998
by
Kenichi Handa
Browse files
(Finsert_file_contents): Call setup_raw_text_coding_system.
parent
1d8a80f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
18 deletions
+6
-18
src/fileio.c
src/fileio.c
+6
-18
No files found.
src/fileio.c
View file @
57515cfe
...
...
@@ -3501,15 +3501,9 @@ actually used.")
if
(
NILP
(
Vcoding_system_for_read
)
&&
NILP
(
current_buffer
->
enable_multibyte_characters
))
{
/* We must suppress all text conversion except for end-of-line
conversion. */
int eol_type;
eol_type = coding.eol_type;
setup_coding_system (Qraw_text, &coding);
coding.eol_type = eol_type;
}
/* We must suppress all text conversion except for end-of-line
conversion. */
setup_raw_text_coding_system
(
&
coding
);
coding_system_decided
=
1
;
}
...
...
@@ -4023,15 +4017,9 @@ actually used.")
if
(
NILP
(
Vcoding_system_for_read
)
&&
NILP
(
current_buffer
->
enable_multibyte_characters
))
{
/* We must suppress all text conversion except for
end-of-line conversion. */
int eol_type;
eol_type = coding.eol_type;
setup_coding_system (Qraw_text, &coding);
coding.eol_type = eol_type;
}
/* We must suppress all text conversion except for
end-of-line conversion. */
setup_raw_text_coding_system
(
&
coding
);
}
if
(
CODING_MAY_REQUIRE_DECODING
(
&
coding
))
...
...
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